Skip to content

Commit

Permalink
[x86/Linux] add a stub for THROW_CONTROL_FOR_THREAD_FUNCTION (dotnet/…
Browse files Browse the repository at this point in the history
…coreclr#8455)

THROW_CONTROL_FOR_THREAD_FUNCTION is defined as ThrowControlForThread
for x86/Linux, but unixstubs implements RedirectForThrowControl (which
corresponds to x64/Linux).

This commit renames RedirectForThrowControl as ThrowControlForThread to
fix dangling ThrowControlForThread reference in x86/Linux.

Commit migrated from dotnet/coreclr@528508c
  • Loading branch information
parjong authored and janvorli committed Dec 5, 2016
1 parent c552b65 commit 2f864a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/src/vm/i386/unixstubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

extern "C"
{
void RedirectForThrowControl()
void ThrowControlForThread()
{
PORTABILITY_ASSERT("Implement for PAL");
}
Expand Down

0 comments on commit 2f864a5

Please sign in to comment.