Changes in kernel/generic/src/main/main.c [3b3faf51:ce732e74] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/main.c
r3b3faf51 rce732e74 48 48 49 49 #include <arch/asm.h> 50 #include <debug.h> 50 51 #include <context.h> 51 52 #include <print.h> 52 53 #include <panic.h> 53 #include < debug.h>54 #include <assert.h> 54 55 #include <config.h> 55 56 #include <time/clock.h> … … 91 92 #include <sysinfo/stats.h> 92 93 #include <lib/ra.h> 94 #include <cap/cap.h> 93 95 94 96 /* Ensure [u]int*_t types are of correct size. … … 98 100 */ 99 101 #define CHECK_INT_TYPE_(signness, size) \ 100 STATIC_ASSERT_VERBOSE(sizeof(signness##size##_t) * 8 == size, \102 static_assert(sizeof(signness##size##_t) * 8 == size, \ 101 103 #signness #size "_t does not have " #size " bits"); 102 104 … … 276 278 timeout_init(); 277 279 scheduler_init(); 280 caps_init(); 278 281 task_init(); 279 282 thread_init();
Note:
See TracChangeset
for help on using the changeset viewer.