[CRT]
Add ARM stubs for _abnormal_termination, _except_handler2, _except_handler3, _global_unwind2, _local_unwind2, __C_specific_handler, __CxxFrameHandler, __rt_srsh
[RTL]
Add ARM stubs for RtlGetCallersAddress, RtlDispatchException, RtlUnwind, RtlInitializeContext
[NTOSKRNL]
Add ARM stubs for READ/WRITE_REGISTER_*
svn path=/trunk/; revision=67294
2015-04-19 10:03:21 +00:00
|
|
|
/*
|
2015-05-10 21:04:27 +00:00
|
|
|
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
|
|
|
|
* PROJECT: ReactOS CRT librariy
|
[CRT]
Add ARM stubs for _abnormal_termination, _except_handler2, _except_handler3, _global_unwind2, _local_unwind2, __C_specific_handler, __CxxFrameHandler, __rt_srsh
[RTL]
Add ARM stubs for RtlGetCallersAddress, RtlDispatchException, RtlUnwind, RtlInitializeContext
[NTOSKRNL]
Add ARM stubs for READ/WRITE_REGISTER_*
svn path=/trunk/; revision=67294
2015-04-19 10:03:21 +00:00
|
|
|
* PURPOSE: Implementation of _global_unwind2
|
|
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
#include <kxarm.h>
|
|
|
|
|
|
|
|
/* CODE **********************************************************************/
|
|
|
|
TEXTAREA
|
|
|
|
|
|
|
|
LEAF_ENTRY _global_unwind2
|
2015-05-10 21:04:27 +00:00
|
|
|
__assertfail
|
[CRT]
Add ARM stubs for _abnormal_termination, _except_handler2, _except_handler3, _global_unwind2, _local_unwind2, __C_specific_handler, __CxxFrameHandler, __rt_srsh
[RTL]
Add ARM stubs for RtlGetCallersAddress, RtlDispatchException, RtlUnwind, RtlInitializeContext
[NTOSKRNL]
Add ARM stubs for READ/WRITE_REGISTER_*
svn path=/trunk/; revision=67294
2015-04-19 10:03:21 +00:00
|
|
|
bx lr
|
|
|
|
LEAF_END _global_unwind2
|
|
|
|
|
|
|
|
END
|
|
|
|
/* EOF */
|