Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

[x86/Linux] Add UnhandledExceptionHandlerUnix Stub #8425

Merged
merged 1 commit into from
Dec 6, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/vm/i386/unixstubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,19 @@ extern "C"
void STDCALL JIT_ProfilerEnterLeaveTailcallStub(UINT_PTR ProfilerHandle)
{
}

_Unwind_Reason_Code
UnhandledExceptionHandlerUnix(
IN int version,
IN _Unwind_Action action,
IN uint64_t exceptionClass,
IN struct _Unwind_Exception *exception,
IN struct _Unwind_Context *context
)
{
PORTABILITY_ASSERT("UnhandledExceptionHandlerUnix");
return _URC_FATAL_PHASE1_ERROR;
}
};

VOID __cdecl PopSEHRecords(LPVOID pTargetSP)
Expand Down