Rev 893 | Rev 897 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 893 | Rev 895 | ||
---|---|---|---|
Line 59... | Line 59... | ||
59 | */ |
59 | */ |
60 | t = thread_create(kofwinput, NULL, TASK, 0); |
60 | t = thread_create(kofwinput, NULL, TASK, 0); |
61 | if (!t) |
61 | if (!t) |
62 | panic("cannot create kofwinput\n"); |
62 | panic("cannot create kofwinput\n"); |
63 | thread_ready(t); |
63 | thread_ready(t); |
- | 64 | ||
- | 65 | /* |
|
- | 66 | * Create thread that polls keyboard. |
|
- | 67 | */ |
|
- | 68 | t = thread_create(kkbdpoll, NULL, TASK, 0); |
|
- | 69 | if (!t) |
|
- | 70 | panic("cannot create kkbdpoll\n"); |
|
- | 71 | thread_ready(t); |
|
64 | } |
72 | } |
65 | 73 | ||
66 | void calibrate_delay_loop(void) |
74 | void calibrate_delay_loop(void) |
67 | { |
75 | { |
68 | } |
76 | } |