Changeset 57025 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Apr 2, 2010, 2:53:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r57001 r57025 202 202 void* address = VirtualAlloc(NULL, BLOCK_SIZE, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE); 203 203 #elif OS(WINDOWS) 204 #if COMPILER(MINGW) && ! defined(__MINGW64_VERSION_MAJOR)204 #if COMPILER(MINGW) && !COMPILER(MINGW64) 205 205 void* address = __mingw_aligned_malloc(BLOCK_SIZE, BLOCK_SIZE); 206 206 #else … … 293 293 VirtualFree(block, 0, MEM_RELEASE); 294 294 #elif OS(WINDOWS) 295 #if COMPILER(MINGW) && ! defined(__MINGW64_VERSION_MAJOR)295 #if COMPILER(MINGW) && !COMPILER(MINGW64) 296 296 __mingw_aligned_free(block); 297 297 #else
Note:
See TracChangeset
for help on using the changeset viewer.