Changeset 40608 in webkit for trunk/JavaScriptCore/runtime/Structure.cpp
- Timestamp:
- Feb 4, 2009, 12:55:28 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Structure.cpp
r40076 r40608 66 66 67 67 #if ENABLE(JSC_MULTIPLE_THREADS) 68 static Mutex ignoreSetMutex;68 static Mutex& ignoreSetMutex = *(new Mutex); 69 69 #endif 70 70 71 71 static bool shouldIgnoreLeaks; 72 static HashSet<Structure*> ignoreSet;72 static HashSet<Structure*>& ignoreSet = *(new HashSet<Structure*>); 73 73 #endif 74 74 75 75 #if DUMP_STRUCTURE_ID_STATISTICS 76 static HashSet<Structure*> liveStructureSet;76 static HashSet<Structure*>& liveStructureSet = *(new HashSet<Structure*>); 77 77 #endif 78 78
Note:
See TracChangeset
for help on using the changeset viewer.