From da767436b6c297a130e16bec2b439e80c86c4228 Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Mon, 5 Dec 2016 18:26:22 +0900 Subject: [PATCH] [x86/Linux] add a stub for THROW_CONTROL_FOR_THREAD_FUNCTION 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. --- src/vm/i386/unixstubs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/i386/unixstubs.cpp b/src/vm/i386/unixstubs.cpp index 86dd75da49c7..80ea40ab33c0 100644 --- a/src/vm/i386/unixstubs.cpp +++ b/src/vm/i386/unixstubs.cpp @@ -6,7 +6,7 @@ extern "C" { - void RedirectForThrowControl() + void ThrowControlForThread() { PORTABILITY_ASSERT("Implement for PAL"); }