[x86/Linux] add a stub for THROW_CONTROL_FOR_THREAD_FUNCTION (dotnet/coreclr#8455)
authorJonghyun Park <parjong@gmail.com>
Mon, 5 Dec 2016 23:54:41 +0000 (08:54 +0900)
committerJan Vorlicek <janvorli@microsoft.com>
Mon, 5 Dec 2016 23:54:41 +0000 (00:54 +0100)
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 https://github.com/dotnet/coreclr/commit/528508ccee9925c663ef86fd842d60883760db02

src/coreclr/src/vm/i386/unixstubs.cpp

index 86dd75d..80ea40a 100644 (file)
@@ -6,7 +6,7 @@
 
 extern "C"
 {
-    void RedirectForThrowControl()
+    void ThrowControlForThread()
     {
         PORTABILITY_ASSERT("Implement for PAL");
     }