summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSaeHie Park <saehie.park@gmail.com>2016-11-23 18:38:26 +0900
committerJan Vorlicek <janvorli@microsoft.com>2016-11-23 10:38:26 +0100
commitc581947c307df9abcb6abe8bd64df940d6372d6a (patch)
tree6cedc2a2181ae4c22ad1e67348dffbf47819c54c /src
parent74015760d85127bdda68a520d2c0fe5f8bb667ed (diff)
downloadcoreclr-c581947c307df9abcb6abe8bd64df940d6372d6a.tar.gz
coreclr-c581947c307df9abcb6abe8bd64df940d6372d6a.tar.bz2
coreclr-c581947c307df9abcb6abe8bd64df940d6372d6a.zip
[x86/Linux] Fix no matching function for call to 'InternalCreateThread' (#8265)
Fix compile error for x86/Linux - fix calling convention by adding PALAPI to TerminationRequestHandlingRoutine
Diffstat (limited to 'src')
-rw-r--r--src/pal/src/synchmgr/synchmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pal/src/synchmgr/synchmanager.cpp b/src/pal/src/synchmgr/synchmanager.cpp
index 473918cb68..3aec140474 100644
--- a/src/pal/src/synchmgr/synchmanager.cpp
+++ b/src/pal/src/synchmgr/synchmanager.cpp
@@ -1648,7 +1648,7 @@ namespace CorUnix
}
// Entry point routine for the thread that initiates process termination.
- DWORD TerminationRequestHandlingRoutine(LPVOID pArg)
+ DWORD PALAPI TerminationRequestHandlingRoutine(LPVOID pArg)
{
// Call the termination request handler if one is registered.
if (g_terminationRequestHandler != NULL)