summaryrefslogtreecommitdiff
path: root/src/vm
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2016-11-30 23:23:29 +0900
committerJan Vorlicek <janvorli@microsoft.com>2016-11-30 15:23:29 +0100
commit1ab34fa83f5f5479065b85d3d902e533e167ec2d (patch)
treed1abf6ef500bcab91dee373eb24facca03b31f63 /src/vm
parentfa6222d52a81c24077206cf5082b2f3967e67ebc (diff)
downloadcoreclr-1ab34fa83f5f5479065b85d3d902e533e167ec2d.tar.gz
coreclr-1ab34fa83f5f5479065b85d3d902e533e167ec2d.tar.bz2
coreclr-1ab34fa83f5f5479065b85d3d902e533e167ec2d.zip
Fix mismatch between signature and implementation of ActivationFunctions (#8394)
Diffstat (limited to 'src/vm')
-rw-r--r--src/vm/threads.h2
-rw-r--r--src/vm/threadsuspend.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/threads.h b/src/vm/threads.h
index a4131948ad..144e17c591 100644
--- a/src/vm/threads.h
+++ b/src/vm/threads.h
@@ -1072,7 +1072,7 @@ class Thread: public IUnknown
friend DWORD MapWin32FaultToCOMPlusException(EXCEPTION_RECORD *pExceptionRecord);
friend void STDCALL OnHijackWorker(HijackArgs * pArgs);
#ifdef PLATFORM_UNIX
- friend void PALAPI HandleGCSuspensionForInterruptedThread(CONTEXT *interruptedContext);
+ friend void HandleGCSuspensionForInterruptedThread(CONTEXT *interruptedContext);
#endif // PLATFORM_UNIX
#endif // FEATURE_HIJACK
diff --git a/src/vm/threadsuspend.cpp b/src/vm/threadsuspend.cpp
index 0d16d908b1..2e6563da1e 100644
--- a/src/vm/threadsuspend.cpp
+++ b/src/vm/threadsuspend.cpp
@@ -8212,7 +8212,7 @@ retry_for_debugger:
// This function is called by PAL to check if the specified instruction pointer
// is in a function where we can safely inject activation.
-BOOL PALAPI CheckActivationSafePoint(SIZE_T ip, BOOL checkingCurrentThread)
+BOOL CheckActivationSafePoint(SIZE_T ip, BOOL checkingCurrentThread)
{
Thread *pThread = GetThread();
// It is safe to call the ExecutionManager::IsManagedCode only if we are making the check for
@@ -8239,7 +8239,7 @@ BOOL PALAPI CheckActivationSafePoint(SIZE_T ip, BOOL checkingCurrentThread)
// address to take the thread to the appropriate stub (based on the return
// type of the method) which will then handle preparing the thread for GC.
//
-void PALAPI HandleGCSuspensionForInterruptedThread(CONTEXT *interruptedContext)
+void HandleGCSuspensionForInterruptedThread(CONTEXT *interruptedContext)
{
Thread *pThread = GetThread();