Changeset 56066 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- Mar 16, 2010, 9:19:50 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r56029 r56066 418 418 #include <errno.h> 419 419 #include <limits> 420 #include <new>421 420 #include <pthread.h> 422 421 #include <stdarg.h> … … 3943 3942 } 3944 3943 3944 #if ENABLE(GLOBAL_FASTMALLOC_NEW) 3945 3945 3946 void* operator new(size_t size) { 3946 3947 void* p = cpp_alloc(size, false); … … 3996 3997 do_free(p); 3997 3998 } 3999 4000 #endif 3998 4001 3999 4002 extern "C" void* memalign(size_t align, size_t size) __THROW {
Note:
See TracChangeset
for help on using the changeset viewer.