[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
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Run-Time Library
|
|
|
|
* PURPOSE: User-mode exception support for IA-32
|
2015-11-07 12:22:52 +00:00
|
|
|
* FILE: lib/rtl/arm/except.c
|
[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
|
|
|
* PROGRAMERS:
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
|
|
|
|
#include <rtl.h>
|
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
/* PUBLIC FUNCTIONS **********************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlGetCallersAddress(
|
|
|
|
_Out_ PVOID *CallersAddress,
|
|
|
|
_Out_ PVOID *CallersCaller)
|
|
|
|
{
|
|
|
|
ASSERT(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
BOOLEAN
|
|
|
|
NTAPI
|
|
|
|
RtlDispatchException(
|
|
|
|
_In_ PEXCEPTION_RECORD ExceptionRecord,
|
|
|
|
_In_ PCONTEXT Context)
|
|
|
|
{
|
|
|
|
ASSERT(FALSE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlUnwind(
|
|
|
|
_In_opt_ PVOID TargetFrame,
|
|
|
|
_In_opt_ PVOID TargetIp,
|
|
|
|
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
|
|
|
|
_In_ PVOID ReturnValue)
|
|
|
|
{
|
|
|
|
ASSERT(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlInitializeContext(
|
|
|
|
IN HANDLE ProcessHandle,
|
|
|
|
OUT PCONTEXT ThreadContext,
|
|
|
|
IN PVOID ThreadStartParam OPTIONAL,
|
|
|
|
IN PTHREAD_START_ROUTINE ThreadStartAddress,
|
|
|
|
IN PINITIAL_TEB StackBase)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* EOF */
|