summaryrefslogtreecommitdiffstats
path: root/Source/JavaScriptCore/API/APIShims.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/API/APIShims.h')
-rw-r--r--Source/JavaScriptCore/API/APIShims.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/API/APIShims.h b/Source/JavaScriptCore/API/APIShims.h
index 0b49d70..26db2dc 100644
--- a/Source/JavaScriptCore/API/APIShims.h
+++ b/Source/JavaScriptCore/API/APIShims.h
@@ -39,8 +39,11 @@ protected:
: m_globalData(globalData)
, m_entryIdentifierTable(wtfThreadData().setCurrentIdentifierTable(globalData->identifierTable))
{
+ UNUSED_PARAM(registerThread);
+#if ENABLE(JSC_MULTIPLE_THREADS)
if (registerThread)
- globalData->heap.registerThread();
+ globalData->heap.machineStackMarker().registerThread();
+#endif
m_globalData->heap.activityCallback()->synchronize();
m_globalData->timeoutChecker.start();
}