Changeset 1864 for trunk/src/kmk/main.c
- Timestamp:
- Oct 15, 2008, 3:00:57 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/main.c
r1863 r1864 648 648 struct alloccache nameseq_cache; 649 649 struct alloccache variable_cache; 650 struct alloccache variable_set_cache; 651 struct alloccache variable_set_list_cache; 650 652 651 653 static void 652 654 initialize_global_alloc_caches (void) 653 655 { 654 alloccache_init (&dep_cache, sizeof (struct dep), "dep", NULL, NULL); 655 alloccache_init (&nameseq_cache, sizeof (struct nameseq), "nameseq", NULL, NULL); 656 alloccache_init (&variable_cache, sizeof (struct variable), "variable", NULL, NULL); 656 alloccache_init (&dep_cache, sizeof (struct dep), "dep", NULL, NULL); 657 alloccache_init (&nameseq_cache, sizeof (struct nameseq), "nameseq", NULL, NULL); 658 alloccache_init (&variable_cache, sizeof (struct variable), "variable", NULL, NULL); 659 alloccache_init (&variable_set_cache, sizeof (struct variable_set), "variable_set", NULL, NULL); 660 alloccache_init (&variable_set_list_cache, sizeof (struct variable_set_list), "variable_set_list", NULL, NULL); 657 661 } 658 662 #endif … … 2933 2937 if (!remote_description || *remote_description == '\0') 2934 2938 printf (_("\nThis program is built for %s/%s/%s [" __DATE__ " " __TIME__ "]\n"), 2935 KBUILD_HOST, KBUILD_HOST_ARCH, KBUILD_HOST_CPU , remote_description);2939 KBUILD_HOST, KBUILD_HOST_ARCH, KBUILD_HOST_CPU); 2936 2940 else 2937 2941 printf (_("\nThis program is built for %s/%s/%s (%s) [" __DATE__ " " __TIME__ "]\n"),
Note:
See TracChangeset
for help on using the changeset viewer.