Changeset 25296 in webkit for trunk/JavaScriptCore/kjs/collector.cpp
- Timestamp:
- Aug 29, 2007, 10:35:50 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r24874 r25296 110 110 #elif HAVE(POSIX_MEMALIGN) 111 111 void* address; 112 posix_memalign( address, BLOCK_SIZE, BLOCK_SIZE);113 memset( reinterpret_cast<void*>(address), 0, BLOCK_SIZE);112 posix_memalign(&address, BLOCK_SIZE, BLOCK_SIZE); 113 memset(address, 0, BLOCK_SIZE); 114 114 #else 115 115 static size_t pagesize = getpagesize();
Note:
See TracChangeset
for help on using the changeset viewer.