From 2f864a50a97ef8320aeb274c53d2cbfbb1bf1c63 Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Tue, 6 Dec 2016 08:54:41 +0900 Subject: [PATCH] [x86/Linux] add a stub for THROW_CONTROL_FOR_THREAD_FUNCTION (dotnet/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 https://github.com/dotnet/coreclr/commit/528508ccee9925c663ef86fd842d60883760db02 --- src/coreclr/src/vm/i386/unixstubs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/vm/i386/unixstubs.cpp b/src/coreclr/src/vm/i386/unixstubs.cpp index 86dd75d..80ea40a 100644 --- a/src/coreclr/src/vm/i386/unixstubs.cpp +++ b/src/coreclr/src/vm/i386/unixstubs.cpp @@ -6,7 +6,7 @@ extern "C" { - void RedirectForThrowControl() + void ThrowControlForThread() { PORTABILITY_ASSERT("Implement for PAL"); } -- 2.7.4