Ignore:
Timestamp:
Mar 6, 2008, 9:50:08 AM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Darin.

<rdar://problem/5687269> Need to create a Collator abstraction for WebCore and JavaScriptCore

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/ThreadingGtk.cpp

    r30523 r30842  
    3737namespace WTF {
    3838
     39Mutex* atomicallyInitializedStaticMutex;
     40
    3941void initializeThreading()
    4042{
    41     if (!g_thread_supported())
     43    if (!g_thread_supported()) {
    4244        g_thread_init(NULL);
     45        ASSERT(!atomicallyInitializedStaticMutex);
     46        atomicallyInitializedStaticMutex = new Mutex;
     47    }
    4348    ASSERT(g_thread_supported());
    4449}
Note: See TracChangeset for help on using the changeset viewer.