From 2d15a7bdb17a33eebc486df2d4d1137b14e3341c Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 28 May 2016 15:28:49 +0200 Subject: [PATCH] Make HandlerFunc public, because it is part of a public interface --- src/interrupts/idt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interrupts/idt.rs b/src/interrupts/idt.rs index ea7c41cd..af590880 100644 --- a/src/interrupts/idt.rs +++ b/src/interrupts/idt.rs @@ -36,7 +36,7 @@ pub struct Entry { reserved: u32, } -type HandlerFunc = extern "C" fn() -> !; +pub type HandlerFunc = extern "C" fn() -> !; impl Entry { fn new(gdt_selector: SegmentSelector, handler: HandlerFunc) -> Self {