Changeset 84466 in webkit for trunk/Source/JavaScriptCore/wtf/dtoa.cpp
- Timestamp:
- Apr 20, 2011, 9:20:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/dtoa.cpp
r76248 r84466 91 91 namespace WTF { 92 92 93 #if ENABLE( JSC_MULTIPLE_THREADS)93 #if ENABLE(WTF_MULTIPLE_THREADS) 94 94 Mutex* s_dtoaP5Mutex; 95 95 #endif … … 436 436 return; 437 437 438 #if ENABLE( JSC_MULTIPLE_THREADS)438 #if ENABLE(WTF_MULTIPLE_THREADS) 439 439 s_dtoaP5Mutex->lock(); 440 440 #endif … … 451 451 452 452 int p5sCountLocal = p5sCount; 453 #if ENABLE( JSC_MULTIPLE_THREADS)453 #if ENABLE(WTF_MULTIPLE_THREADS) 454 454 s_dtoaP5Mutex->unlock(); 455 455 #endif … … 464 464 465 465 if (++p5sUsed == p5sCountLocal) { 466 #if ENABLE( JSC_MULTIPLE_THREADS)466 #if ENABLE(WTF_MULTIPLE_THREADS) 467 467 s_dtoaP5Mutex->lock(); 468 468 #endif … … 477 477 478 478 p5sCountLocal = p5sCount; 479 #if ENABLE( JSC_MULTIPLE_THREADS)479 #if ENABLE(WTF_MULTIPLE_THREADS) 480 480 s_dtoaP5Mutex->unlock(); 481 481 #endif
Note:
See TracChangeset
for help on using the changeset viewer.