Changeset 1864 for trunk/src/kmk/misc.c
- Timestamp:
- Oct 15, 2008, 3:00:57 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/misc.c
r1863 r1864 1286 1286 alloccache_print (struct alloccache *cache) 1287 1287 { 1288 printf (_("\n# Alloc Cache: %s item size: %u alloc: %d total: %u\n"), 1288 printf (_("\n# Alloc Cache: %s\n" 1289 "# Items: size = %-3u in-use = %-6d total = %-6u\n"), 1289 1290 cache->name, cache->size, (int)cache->alloc_count, cache->total_count); 1290 1291 } … … 1295 1296 { 1296 1297 struct alloccache *cur; 1298 puts (""); 1297 1299 for (cur = alloccache_head; cur; cur = cur->next) 1298 1300 alloccache_print (cur);
Note:
See TracChangeset
for help on using the changeset viewer.