Changeset aeaebcc in mainline
- Timestamp:
- 2006-12-14T18:12:13Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2a0cda72
- Parents:
- 62b6d17
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/sparc64.c
r62b6d17 raeaebcc 100 100 * Create thread that polls keyboard. 101 101 */ 102 t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll" );102 t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", true); 103 103 if (!t) 104 104 panic("cannot create kkbdpoll\n"); … … 127 127 void asm_delay_loop(const uint32_t usec) 128 128 { 129 uint64_t stop = tick_read() + (uint64_t) usec * (uint64_t) CPU->arch.clock_frequency / 1000000; 129 uint64_t stop = tick_read() + (uint64_t) usec * (uint64_t) 130 CPU->arch.clock_frequency / 1000000; 130 131 131 132 while (tick_read() < stop)
Note:
See TracChangeset
for help on using the changeset viewer.