Changeset 30842 in webkit for trunk/JavaScriptCore/wtf/ThreadingGtk.cpp
- Timestamp:
- Mar 6, 2008, 9:50:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/ThreadingGtk.cpp
r30523 r30842 37 37 namespace WTF { 38 38 39 Mutex* atomicallyInitializedStaticMutex; 40 39 41 void initializeThreading() 40 42 { 41 if (!g_thread_supported()) 43 if (!g_thread_supported()) { 42 44 g_thread_init(NULL); 45 ASSERT(!atomicallyInitializedStaticMutex); 46 atomicallyInitializedStaticMutex = new Mutex; 47 } 43 48 ASSERT(g_thread_supported()); 44 49 }
Note:
See TracChangeset
for help on using the changeset viewer.