Rev 578 | Rev 615 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 578 | Rev 609 | ||
|---|---|---|---|
| Line 131... | Line 131... | ||
| 131 | arch_post_smp_init(); |
131 | arch_post_smp_init(); |
| 132 | 132 | ||
| 133 | /* |
133 | /* |
| 134 | * Create kernel console. |
134 | * Create kernel console. |
| 135 | */ |
135 | */ |
| 136 | if (t = thread_create(kconsole, NULL, TASK, 0)) |
136 | if (t = thread_create(kconsole, "kconsole", TASK, 0)) |
| 137 | thread_ready(t); |
137 | thread_ready(t); |
| 138 | else panic("thread_create/kconsole\n"); |
138 | else panic("thread_create/kconsole\n"); |
| 139 | 139 | ||
| 140 | interrupts_enable(); |
140 | interrupts_enable(); |
| 141 | 141 | ||