Changeset 64327 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- Jul 29, 2010, 6:27:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r64302 r64327 83 83 #include <pthread.h> 84 84 #endif 85 #include <wtf/StdLibExtras.h>86 85 87 86 #ifndef NO_TCMALLOC_SAMPLES … … 1017 1016 CRASH(); 1018 1017 1019 * reinterpret_cast_ptr<void**>(new_allocation)= allocated_regions_;1018 *(void**)new_allocation = allocated_regions_; 1020 1019 allocated_regions_ = new_allocation; 1021 1020 free_area_ = new_allocation + kAlignedSize; … … 2712 2711 while ((nptr = ptr + size) <= limit) { 2713 2712 *tail = ptr; 2714 tail = reinterpret_cast _ptr<void**>(ptr);2713 tail = reinterpret_cast<void**>(ptr); 2715 2714 ptr = nptr; 2716 2715 num++;
Note:
See TracChangeset
for help on using the changeset viewer.