Changeset 35476 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- Jul 31, 2008, 1:44:58 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r35055 r35476 79 79 80 80 #include "Assertions.h" 81 #if USE( MULTIPLE_THREADS)81 #if USE(PTHREADS) 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
Note:
See TracChangeset
for help on using the changeset viewer.