From 8234dea6601fe9cd00ada444a7e674cb8abde167 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Tue, 18 Jan 2000 11:04:53 +0000 Subject: [PATCH] Changed debug output to use INT 2D Ooops! This one was missing! Sorry! svn path=/trunk/; revision=937 --- reactos/ntoskrnl/ke/i386/exp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/ntoskrnl/ke/i386/exp.c b/reactos/ntoskrnl/ke/i386/exp.c index fb0f5387618..fd7f9c1211b 100644 --- a/reactos/ntoskrnl/ke/i386/exp.c +++ b/reactos/ntoskrnl/ke/i386/exp.c @@ -30,6 +30,7 @@ static exception_hook* exception_hooks[256]={NULL,}; #define STR(x) _STR(x) extern void interrupt_handler2e(void); +extern void interrupt_handler2d(void); extern ULONG init_stack; extern ULONG init_stack_top; @@ -428,5 +429,6 @@ asmlinkage void KeInitExceptions(void) set_interrupt_gate(i,(int)exception_handler_unknown); } + set_system_call_gate(0x2d,(int)interrupt_handler2d); set_system_call_gate(0x2e,(int)interrupt_handler2e); }