//kernel/trunk/arch/sparc64/src/sparc64.c |
---|
57,7 → 57,7 |
/* |
* Create thread that reads characters from OFW's input. |
*/ |
t = thread_create(kofwinput, NULL, TASK, 0, "kofwinput"); |
t = thread_create(kofwinput, NULL, TASK, 0); |
if (!t) |
panic("cannot create kofwinput\n"); |
thread_ready(t); |
65,7 → 65,7 |
/* |
* Create thread that polls keyboard. |
*/ |
t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll"); |
t = thread_create(kkbdpoll, NULL, TASK, 0); |
if (!t) |
panic("cannot create kkbdpoll\n"); |
thread_ready(t); |