Changeset 127829 in webkit for trunk/Source/JavaScriptCore/runtime
- Timestamp:
- Sep 6, 2012, 10:53:25 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Options.cpp
r127719 r127829 147 147 #endif 148 148 149 #if USE(CF) || OS(UNIX) 150 zombiesAreImmortal() = !!getenv("JSImmortalZombieEnabled"); 151 useZombieMode() = zombiesAreImmortal() || !!getenv("JSZombieEnabled"); 152 #endif 153 149 154 // Do range checks where needed and make corrections to the options: 150 155 ASSERT(thresholdForOptimizeAfterLongWarmUp() >= thresholdForOptimizeAfterWarmUp()); -
trunk/Source/JavaScriptCore/runtime/Options.h
r127719 r127829 119 119 \ 120 120 v(bool, forceWeakRandomSeed, false) \ 121 v(unsigned, forcedWeakRandomSeed, 0) 121 v(unsigned, forcedWeakRandomSeed, 0) \ 122 \ 123 v(bool, useZombieMode, false) \ 124 v(bool, zombiesAreImmortal, false) 122 125 123 126
Note:
See TracChangeset
for help on using the changeset viewer.