Changeset 36056 in webkit for trunk/JavaScriptCore/wtf/ThreadingGtk.cpp
- Timestamp:
- Sep 3, 2008, 9:37:00 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/ThreadingGtk.cpp
r35726 r36056 31 31 #include "Threading.h" 32 32 33 #include <wtf/HashMap.h> 34 #include <wtf/MathExtras.h> 33 #include "HashMap.h" 34 #include "MainThread.h" 35 #include "MathExtras.h" 35 36 36 37 #include <glib.h> … … 40 41 Mutex* atomicallyInitializedStaticMutex; 41 42 43 #if !PLATFORM(DARWIN) 42 44 static ThreadIdentifier mainThreadIdentifier; 45 #endif 43 46 44 47 static Mutex& threadMapMutex() … … 58 61 threadMapMutex(); 59 62 wtf_random_init(); 63 #if !PLATFORM(DARWIN) 60 64 mainThreadIdentifier = currentThread(); 65 #endif 66 initializeMainThread(); 61 67 } 62 68 }
Note:
See TracChangeset
for help on using the changeset viewer.