Changeset 62b6d17 in mainline for kernel/generic/src/main/kinit.c
- Timestamp:
- 2006-12-14T16:47:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aeaebcc
- Parents:
- 55cc9bc
- File:
-
- 1 edited
-
kernel/generic/src/main/kinit.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r55cc9bc r62b6d17 99 99 * Just a beautification. 100 100 */ 101 if ((t = thread_create(kmp, NULL, TASK, THREAD_FLAG_WIRED, "kmp" ))) {101 if ((t = thread_create(kmp, NULL, TASK, THREAD_FLAG_WIRED, "kmp", true))) { 102 102 spinlock_lock(&t->lock); 103 103 t->cpu = &cpus[0]; … … 124 124 for (i = 0; i < config.cpu_count; i++) { 125 125 126 if ((t = thread_create(kcpulb, NULL, TASK, THREAD_FLAG_WIRED, "kcpulb" ))) {126 if ((t = thread_create(kcpulb, NULL, TASK, THREAD_FLAG_WIRED, "kcpulb", true))) { 127 127 spinlock_lock(&t->lock); 128 128 t->cpu = &cpus[i]; … … 144 144 * Create kernel console. 145 145 */ 146 if ((t = thread_create(kconsole, "kconsole", TASK, 0, "kconsole" )))146 if ((t = thread_create(kconsole, "kconsole", TASK, 0, "kconsole", false))) 147 147 thread_ready(t); 148 148 else
Note:
See TracChangeset
for help on using the changeset viewer.
