Changeset 34088 in webkit for trunk/JavaScriptCore/kjs/collector.cpp
- Timestamp:
- May 23, 2008, 12:42:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r33979 r34088 292 292 return newCell; 293 293 } 294 #if !PLATFORM(MAC) 294 295 #ifndef JAVASCRIPTCORE_BUILDING_ALL_IN_ONE_FILE 295 296 void* Collector::allocate(size_t s) 296 297 { 297 298 return heapAllocate<PrimaryHeap>(s); 298 299 } 300 #endif 299 301 300 302 void* Collector::allocateNumber(size_t s) … … 302 304 return heapAllocate<NumberHeap>(s); 303 305 } 304 #endif305 306 306 307 static inline void* currentThreadStackBase()
Note:
See TracChangeset
for help on using the changeset viewer.