NTOSKRNL.ZwXXX functions now call NTOSKRNL.NtXXX via int 0x2e.
[reactos.git] / reactos / ntoskrnl / ke / catch.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: ntoskrnl/ke/catch.c
5 * PURPOSE: Exception handling
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 */
8
9 /* INCLUDES *****************************************************************/
10
11 #include <windows.h>
12 #include <ddk/ntddk.h>
13
14 #include <internal/debug.h>
15
16 /* FUNCTIONS ****************************************************************/
17
18 VOID ExRaiseStatus(NTSTATUS Status)
19 {
20 DbgPrint("ExRaiseStatus(%x)\n",Status);
21 for(;;);
22 }
23
24
25 NTSTATUS
26 STDCALL
27 NtRaiseException (
28 IN PEXCEPTION_RECORD ExceptionRecord,
29 IN PCONTEXT Context,
30 IN BOOL IsDebugger OPTIONAL
31 )
32 {
33 UNIMPLEMENTED;
34 }