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

[x86/Linux] Add Portable PopSEHRecords as NYI #8412

Merged
merged 2 commits into from
Dec 2, 2016
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions src/vm/i386/cgenx86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,7 @@ extern "C" VOID STDCALL StubRareDisableTHROWWorker(Thread *pThread)
pThread->HandleThreadAbort();
}

#ifndef FEATURE_PAL
// Note that this logic is copied below, in PopSEHRecords
__declspec(naked)
VOID __cdecl PopSEHRecords(LPVOID pTargetSP)
Expand All @@ -1616,6 +1617,7 @@ VOID __cdecl PopSEHRecords(LPVOID pTargetSP)
retn
}
}
#endif // FEATURE_PAL

//////////////////////////////////////////////////////////////////////////////
//
Expand Down
5 changes: 5 additions & 0 deletions src/vm/i386/unixstubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,8 @@ extern "C"
{
}
};

VOID __cdecl PopSEHRecords(LPVOID pTargetSP)
{
PORTABILITY_ASSERT("Implement for PAL");
}