Changeset 73091 in webkit for trunk/JavaScriptCore/runtime/MarkStack.h
- Timestamp:
- Dec 1, 2010, 6:13:59 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/MarkStack.h
r64684 r73091 29 29 #include "JSValue.h" 30 30 #include <wtf/Noncopyable.h> 31 #include <wtf/OSAllocator.h> 31 32 32 33 namespace JSC { … … 86 87 }; 87 88 88 static void* allocateStack(size_t size) ;89 static void releaseStack(void* addr, size_t size) ;89 static void* allocateStack(size_t size) { return OSAllocator::reserveAndCommit(size); } 90 static void releaseStack(void* addr, size_t size) { OSAllocator::release(addr, size); } 90 91 91 92 static void initializePagesize();
Note:
See TracChangeset
for help on using the changeset viewer.