Changeset 1e9d0e3 in mainline for kernel/generic/src/main/kinit.c
- Timestamp:
- 2008-06-21T10:57:51Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a48bcd
- Parents:
- 46c1234
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r46c1234 r1e9d0e3 147 147 * Create kernel console. 148 148 */ 149 t = thread_create(kconsole, (void *) "kconsole", TASK, 0, "kconsole", false); 149 t = thread_create(kconsole, (void *) "kconsole", TASK, 0, "kconsole", 150 false); 150 151 if (t) 151 152 thread_ready(t); … … 167 168 } 168 169 169 threads[i] = thread_create_program( 170 (void *) init.tasks[i].addr,"uspace");170 threads[i] = thread_create_program((void *) init.tasks[i].addr, 171 "uspace"); 171 172 172 173 if (threads[i] != NULL) { … … 184 185 185 186 if (rd != RE_OK) 186 printf("Init binary %" PRIc " not used, error code %d.\n", i, rd); 187 printf("Init binary %" PRIc " not used, error " 188 "code %d.\n", i, rd); 187 189 } 188 190 }
Note:
See TracChangeset
for help on using the changeset viewer.