Changeset 411b6a6 in mainline for kernel/arch/sparc64/src/sparc64.c
- Timestamp:
- 2009-03-07T16:08:40Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4c84368e
- Parents:
- e06da7e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/sparc64.c
re06da7e r411b6a6 90 90 */ 91 91 irq_init(1 << 11, 128); 92 93 standalone_sparc64_console_init();94 92 } 95 93 } … … 105 103 void arch_post_smp_init(void) 106 104 { 107 static thread_t *t = NULL; 105 if (config.cpu_active == 1) { 106 standalone_sparc64_console_init(); 108 107 109 if (!t) {110 /*111 * Create thread that polls keyboard.112 */113 t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll",true);108 /* Create thread that polls keyboard. 109 * XXX: this is only used by sgcn now 110 */ 111 thread_t *t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", 112 true); 114 113 if (!t) 115 114 panic("Cannot create kkbdpoll.");
Note:
See TracChangeset
for help on using the changeset viewer.