Changeset 100037 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.h
- Timestamp:
- Nov 11, 2011, 3:43:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.h
r96146 r100037 81 81 }; 82 82 83 #if PLATFORM(IOS) 84 // We use a smaller reentrancy limit on iPhone because of the high amount of 85 // stack space required on the web thread. 86 enum { MaxLargeThreadReentryDepth = 93, MaxSmallThreadReentryDepth = 32 }; 87 #else 83 88 enum { MaxLargeThreadReentryDepth = 256, MaxSmallThreadReentryDepth = 32 }; 89 #endif // PLATFORM(IOS) 84 90 85 91 class Interpreter {
Note:
See TracChangeset
for help on using the changeset viewer.