Changeset 95510 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalData.cpp
- Timestamp:
- Sep 19, 2011, 8:35:49 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalData.cpp
r95507 r95510 51 51 #include "Nodes.h" 52 52 #include "Parser.h" 53 #if ENABLE(REGEXP_TRACING) 54 #include "RegExp.h" 55 #endif 53 56 #include "RegExpCache.h" 54 57 #include "RegExpObject.h" 55 58 #include "StrictEvalActivation.h" 59 #include <wtf/Threading.h> 56 60 #include <wtf/WTFThreadData.h> 57 #if ENABLE(REGEXP_TRACING)58 #include "RegExp.h"59 #endif60 61 62 #if ENABLE(JSC_MULTIPLE_THREADS)63 #include <wtf/Threading.h>64 #endif65 66 61 #if PLATFORM(MAC) 67 62 #include <CoreFoundation/CoreFoundation.h> … … 388 383 if (!instance) { 389 384 instance = adoptRef(new JSGlobalData(APIShared, ThreadStackTypeSmall, SmallHeap)).leakRef(); 390 #if ENABLE(JSC_MULTIPLE_THREADS)391 385 instance->makeUsableFromMultipleThreads(); 392 #endif393 386 } 394 387 return *instance;
Note:
See TracChangeset
for help on using the changeset viewer.