Changeset 2633 for trunk/src/kmk/make.h
- Timestamp:
- Sep 9, 2012, 1:18:59 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/make.h
r2591 r2633 639 639 alloccache_alloc (struct alloccache *cache) 640 640 { 641 struct alloccache_free_ent *f = cache->free_head; 641 struct alloccache_free_ent *f; 642 # ifndef CONFIG_WITH_ALLOCCACHE_DEBUG 643 f = cache->free_head; 642 644 if (f) 643 645 cache->free_head = f->next; … … 648 650 } 649 651 else 652 # endif 650 653 f = alloccache_alloc_grow (cache); 651 654 MAKE_STATS(cache->alloc_count++;);
Note:
See TracChangeset
for help on using the changeset viewer.