Changeset f0450658 in mainline for kernel/arch/ia64/src/ia64.c
- Timestamp:
- 2006-10-19T18:07:18Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8cee705
- Parents:
- 3dea17f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ia64.c
r3dea17f rf0450658 87 87 ski_init_console(); 88 88 it_init(); 89 ski_set_console_sysinfo();90 89 } 91 90 … … 100 99 void arch_post_smp_init(void) 101 100 { 101 thread_t *t; 102 103 if (config.cpu_active == 1) { 104 /* 105 * Create thread that polls keyboard. 106 */ 107 t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll"); 108 if (!t) 109 panic("cannot create kkbdpoll\n"); 110 thread_ready(t); 111 } 102 112 } 103 113
Note:
See TracChangeset
for help on using the changeset viewer.