Changeset 1371 in webkit for trunk/JavaScriptCore/kjs/collector.cpp
- Timestamp:
- Jun 15, 2002, 12:59:07 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r1326 r1371 68 68 69 69 #ifdef APPLE_CHANGES 70 // FIXME: fix these once static initializers for pthread_cond_t and 71 // pthread_mutex_t are fixed not to warn. 72 static pthread_mutex_t collectorLock = {_PTHREAD_MUTEX_SIG_init, {}}; 73 static pthread_cond_t collectorCondition = {_PTHREAD_COND_SIG_init, {}}; 70 static pthread_mutex_t collectorLock = PTHREAD_MUTEX_INITIALIZER; 71 static pthread_cond_t collectorCondition = PTHREAD_COND_INITIALIZER; 74 72 static unsigned collectorLockCount = 0; 75 73 static pthread_t collectorLockThread;
Note:
See TracChangeset
for help on using the changeset viewer.