Changeset 48391 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Sep 15, 2009, 6:03:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r48315 r48391 238 238 memset(reinterpret_cast<void*>(address), 0, BLOCK_SIZE); 239 239 #elif PLATFORM(WIN_OS) 240 #if COMPILER(MINGW) 241 void* address = __mingw_aligned_malloc(BLOCK_SIZE, BLOCK_SIZE); 242 #else 240 243 void* address = _aligned_malloc(BLOCK_SIZE, BLOCK_SIZE); 244 #endif 241 245 memset(address, 0, BLOCK_SIZE); 242 246 #elif HAVE(POSIX_MEMALIGN) … … 316 320 userChunk->Free(reinterpret_cast<TAny*>(block)); 317 321 #elif PLATFORM(WIN_OS) 322 #if COMPILER(MINGW) 323 __mingw_aligned_free(block); 324 #else 318 325 _aligned_free(block); 326 #endif 319 327 #elif HAVE(POSIX_MEMALIGN) 320 328 free(block);
Note:
See TracChangeset
for help on using the changeset viewer.