xref: /reactos/sdk/lib/crt/except/arm/ehandler.c (revision c2c66aff)
1 /*
2 * PROJECT:         ReactOS Kernel
3 * LICENSE:         GPL - See COPYING in the top level directory
4 * FILE:            lib/sdk/crt/except/arm/ehandler.c
5 * PURPOSE:         Low level exception handler functions
6 * PROGRAMMERS:     Timo Kreuzer (timo.kreuzer@reactos.org)
7 */
8 
9 /* INCLUDES *****************************************************************/
10 
11 #include <precomp.h>
12 
13 _CRTIMP
14 EXCEPTION_DISPOSITION
15 __cdecl
__C_specific_handler(struct _EXCEPTION_RECORD * _ExceptionRecord,void * _EstablisherFrame,struct _CONTEXT * _ContextRecord,struct _DISPATCHER_CONTEXT * _DispatcherContext)16 __C_specific_handler(
17     struct _EXCEPTION_RECORD *_ExceptionRecord,
18     void *_EstablisherFrame,
19     struct _CONTEXT *_ContextRecord,
20     struct _DISPATCHER_CONTEXT *_DispatcherContext)
21 {
22     UNIMPLEMENTED;
23     __debugbreak();
24     return 0;
25 }
26 
27 DWORD
__CxxFrameHandler3(PEXCEPTION_RECORD rec,EXCEPTION_REGISTRATION_RECORD * ExceptionRegistrationFrame,PCONTEXT context,EXCEPTION_REGISTRATION_RECORD ** _ExceptionRecord)28 __CxxFrameHandler3(
29     PEXCEPTION_RECORD rec,
30     EXCEPTION_REGISTRATION_RECORD* ExceptionRegistrationFrame,
31     PCONTEXT context,
32     EXCEPTION_REGISTRATION_RECORD** _ExceptionRecord)
33 {
34     UNIMPLEMENTED;
35     __debugbreak();
36     return 0;
37 }
38 
39