Changeset ff14c520 in mainline for arch/sparc64/src/sparc64.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
-
arch/sparc64/src/sparc64.c
r37c57f2 rff14c520 58 58 * Create thread that reads characters from OFW's input. 59 59 */ 60 t = thread_create(kofwinput, NULL, TASK, 0 );60 t = thread_create(kofwinput, NULL, TASK, 0, "kofwinput"); 61 61 if (!t) 62 62 panic("cannot create kofwinput\n"); … … 66 66 * Create thread that polls keyboard. 67 67 */ 68 t = thread_create(kkbdpoll, NULL, TASK, 0 );68 t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll"); 69 69 if (!t) 70 70 panic("cannot create kkbdpoll\n");
Note:
See TracChangeset
for help on using the changeset viewer.