Changeset 427 for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- 08/01/08 14:47:24 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/wtf/FastMalloc.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r387 r427 79 79 80 80 #include "Assertions.h" 81 #if USE(MULTIPLE_THREADS)81 #if ENABLE(JSC_MULTIPLE_THREADS) 82 82 #include <pthread.h> 83 83 #endif … … 100 100 namespace WTF { 101 101 102 #if USE(MULTIPLE_THREADS)102 #if ENABLE(JSC_MULTIPLE_THREADS) 103 103 static pthread_key_t isForbiddenKey; 104 104 static pthread_once_t isForbiddenKeyOnce = PTHREAD_ONCE_INIT; … … 143 143 staticIsForbidden = false; 144 144 } 145 #endif // USE(MULTIPLE_THREADS)145 #endif // ENABLE(JSC_MULTIPLE_THREADS) 146 146 147 147 } // namespace WTF
