Changeset 20351 in webkit for trunk/JavaScriptCore/wtf
- Timestamp:
- Mar 20, 2007, 4:57:01 PM (18 years ago)
- Location:
- trunk/JavaScriptCore/wtf
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r20229 r20351 67 67 68 68 #include "Assertions.h" 69 #if USE(MULTIPLE_THREADS) 70 #include <pthread.h> 71 #endif 69 72 70 73 #ifndef USE_SYSTEM_MALLOC … … 160 163 } 161 164 162 #if !PLATFORM(WIN_OS)163 165 void fastMallocSetIsMultiThreaded() 164 166 { 165 167 } 166 #endif167 168 168 169 } // namespace WTF -
trunk/JavaScriptCore/wtf/FastMallocInternal.h
r19209 r20351 24 24 #define WTF_FastMallocInternal_h 25 25 26 #if !PLATFORM(WIN_OS)27 28 #include <pthread.h>29 30 26 namespace WTF { 31 27 // Clients must call this function before allocating memory on a secondary thread. … … 33 29 } 34 30 35 #endif36 37 31 #endif // WTF_FastMallocInternal_h -
trunk/JavaScriptCore/wtf/Platform.h
r19855 r20351 173 173 174 174 /* multiple threads only supported on Mac for now */ 175 #if PLATFORM(MAC) 175 #if PLATFORM(MAC) || PLATFORM(WIN) 176 176 #define WTF_USE_MULTIPLE_THREADS 1 177 177 #endif
Note:
See TracChangeset
for help on using the changeset viewer.