Changeset 1278 for 1.8.3/trunk/src/csrimalloc.c
- Timestamp:
- 09/23/08 12:50:40 (2 months ago)
- Files:
-
- 1.8.3/trunk/src/csrimalloc.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/trunk/src/csrimalloc.c
r1167 r1278 729 729 */ 730 730 Word *_malloc_rovers[MAXBINS + 1] = { NULL }; 731 731 732 const size_t _malloc_binmax[MAXBINS] = { 732 733 8, 16, 32, 64, 128, 256, 512, 1024 733 734 }; 735 734 736 int _malloc_firstbin = 0; 735 737 int _malloc_lastbin = 0; … … 998 1000 univptr_t 999 1001 erealloc(univptr_t ptr, size_t nbytes); 1000 Free_t1001 free(univptr_t cp);1002 Free_t1003 cfree(univptr_t cp);1002 Free_t 1003 free(univptr_t cp); 1004 Free_t 1005 cfree(univptr_t cp); 1004 1006 #endif /* CSRI_TRACE */ 1005 1007
