Changes in kernel/generic/src/main/main.c [9dae191e:bae6169] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/main.c
r9dae191e rbae6169 84 84 #include <main/main.h> 85 85 #include <ipc/event.h> 86 #include <sysinfo/sysinfo.h>87 #include <sysinfo/stats.h>88 86 89 87 /** Global configuration structure. */ … … 211 209 /* Initialize at least 1 memory segment big enough for slab to work. */ 212 210 LOG_EXEC(slab_cache_init()); 213 LOG_EXEC(sysinfo_init());214 211 LOG_EXEC(btree_init()); 215 212 LOG_EXEC(as_init()); … … 226 223 227 224 printf("Detected %" PRIs " CPU(s), %" PRIu64" MiB free memory\n", 228 config.cpu_count, SIZE2MB(zone s_total_size()));229 225 config.cpu_count, SIZE2MB(zone_total_size())); 226 230 227 LOG_EXEC(cpu_init()); 231 228 … … 250 247 LOG_EXEC(event_init()); 251 248 LOG_EXEC(klog_init()); 252 LOG_EXEC(stats_init());253 249 254 250 /*
Note:
See TracChangeset
for help on using the changeset viewer.