Changeset ff14c520 in mainline for generic/src/main/main.c
- Timestamp:
- 2006-03-16T22:31:39Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 93165be
- Parents:
- 37c57f2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/main/main.c
r37c57f2 rff14c520 197 197 * Create kernel task. 198 198 */ 199 k = task_create(AS_KERNEL );199 k = task_create(AS_KERNEL, "KERNEL"); 200 200 if (!k) 201 201 panic("can't create kernel task\n"); … … 204 204 * Create the first thread. 205 205 */ 206 t = thread_create(kinit, NULL, k, 0 );206 t = thread_create(kinit, NULL, k, 0, "kinit"); 207 207 if (!t) 208 208 panic("can't create kinit thread\n");
Note:
See TracChangeset
for help on using the changeset viewer.