Changeset 39809 in webkit for trunk/JavaScriptCore/wtf/TCSystemAlloc.cpp
- Timestamp:
- Jan 11, 2009, 1:58:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/TCSystemAlloc.cpp
r39600 r39809 384 384 void TCMalloc_SystemRelease(void* start, size_t length) 385 385 { 386 UNUSED_PARAM(start);387 UNUSED_PARAM(length);388 386 #if HAVE(MADV_DONTNEED) 389 387 if (FLAGS_malloc_devmem_start) { … … 427 425 return; 428 426 #endif 427 428 #if !HAVE(MADV_DONTNEED) && !HAVE(MMAP) 429 UNUSED_PARAM(start); 430 UNUSED_PARAM(length); 431 #endif 429 432 } 430 433 431 434 #if HAVE(VIRTUALALLOC) 432 void TCMalloc_SystemCommit(void* start, size_t length)435 void TCMalloc_SystemCommit(void*, size_t) 433 436 { 434 UNUSED_PARAM(start); 435 UNUSED_PARAM(length); 436 } 437 #endif 437 } 438 #endif
Note:
See TracChangeset
for help on using the changeset viewer.