2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
8 #include <aros/kernel.h>
9 #include <aros/libcall.h>
10 #include <proto/exec.h>
12 #include <kernel_base.h>
13 #include <kernel_cpu.h>
14 #include <kernel_debug.h>
15 #include <kernel_interrupts.h>
16 #include <kernel_objects.h>
18 /* We use own implementation of bug(), so we don't need aros/debug.h */
21 /*****************************************************************************
24 #include <proto/kernel.h>
26 AROS_LH1(void, KrnRemExceptionHandler
,
29 AROS_LHA(void *, handle
, A0
),
32 struct KernelBase
*, KernelBase
, 15, Kernel
)
35 Remove previously installed CPU exception handler
38 handle - an opaque handler returned by KrnAddExceptionHandler()
54 ******************************************************************************/
58 struct IntrNode
*h
= handle
;
60 if (h
&& (h
->in_type
== it_exception
))