Changeset 48558 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Sep 19, 2009, 10:41:44 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r48391 r48558 237 237 238 238 memset(reinterpret_cast<void*>(address), 0, BLOCK_SIZE); 239 #elif PLATFORM(WINCE) 240 void* address = VirtualAlloc(NULL, BLOCK_SIZE, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE); 239 241 #elif PLATFORM(WIN_OS) 240 242 #if COMPILER(MINGW) … … 319 321 #elif PLATFORM(SYMBIAN) 320 322 userChunk->Free(reinterpret_cast<TAny*>(block)); 323 #elif PLATFORM(WINCE) 324 VirtualFree(block, 0, MEM_RELEASE); 321 325 #elif PLATFORM(WIN_OS) 322 326 #if COMPILER(MINGW)
Note:
See TracChangeset
for help on using the changeset viewer.