Changeset 1371 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp
- Timestamp:
- Jun 15, 2002, 12:59:07 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.cpp
r1326 r1371 127 127 UString UString::null; 128 128 #ifdef APPLE_CHANGES 129 // FIXME: fix this once static initializers for pthread_once_t 130 pthread_once_t statBufferKeyOnce = {_PTHREAD_ONCE_SIG_init, {}}; 131 pthread_key_t statBufferKey; 129 static pthread_once_t statBufferKeyOnce = PTHREAD_ONCE_INIT; 130 static pthread_key_t statBufferKey; 132 131 #else 133 132 static char *statBuffer = 0L;
Note:
See TracChangeset
for help on using the changeset viewer.