Changeset 35726 in webkit for trunk/JavaScriptCore/wtf/ThreadingGtk.cpp
- Timestamp:
- Aug 13, 2008, 1:00:51 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/ThreadingGtk.cpp
r35419 r35726 50 50 void initializeThreading() 51 51 { 52 if (!g_thread_supported()) {52 if (!g_thread_supported()) 53 53 g_thread_init(NULL); 54 ASSERT(!atomicallyInitializedStaticMutex); 54 ASSERT(g_thread_supported()); 55 56 if (!atomicallyInitializedStaticMutex) { 55 57 atomicallyInitializedStaticMutex = new Mutex; 56 58 threadMapMutex(); … … 58 60 mainThreadIdentifier = currentThread(); 59 61 } 60 ASSERT(g_thread_supported());61 62 } 62 63
Note:
See TracChangeset
for help on using the changeset viewer.