Changes in kernel/generic/src/main/kinit.c [19f857a:3a10e34] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r19f857a r3a10e34 67 67 #include <debug.h> 68 68 #include <str.h> 69 #include <ps/load.h> 69 70 70 71 #ifdef CONFIG_SMP … … 163 164 #endif /* CONFIG_KCONSOLE */ 164 165 166 /* Start thread computing system load */ 167 thread = thread_create(kload_thread, NULL, TASK, 0, "kload", false); 168 if (thread != NULL) 169 thread_ready(thread); 170 else 171 printf("Unable to create kload thread\n"); 172 165 173 interrupts_enable(); 166 174
Note:
See TracChangeset
for help on using the changeset viewer.