Changeset 34609 in webkit for trunk/JavaScriptCore/wtf/MainThread.cpp
- Timestamp:
- Jun 16, 2008, 6:44:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/MainThread.cpp
r31730 r34609 47 47 static Mutex& functionQueueMutex() 48 48 { 49 static Mutex staticFunctionQueueMutex;49 AtomicallyInitializedStatic(Mutex, staticFunctionQueueMutex); 50 50 return staticFunctionQueueMutex; 51 51 } … … 59 59 void dispatchFunctionsFromMainThread() 60 60 { 61 ASSERT(isMainThread()); 62 61 63 if (callbacksPaused) 62 64 return; … … 86 88 void setMainThreadCallbacksPaused(bool paused) 87 89 { 90 ASSERT(isMainThread()); 91 88 92 if (callbacksPaused == paused) 89 93 return;
Note:
See TracChangeset
for help on using the changeset viewer.