Changeset 65fb232 in mainline for arch/sparc64/src/sparc64.c
- Timestamp:
- 2005-12-30T22:38:23Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6ccb238
- Parents:
- 80bff342
- File:
-
- 1 edited
-
arch/sparc64/src/sparc64.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/src/sparc64.c
r80bff342 r65fb232 28 28 29 29 #include <arch.h> 30 #include < print.h>30 #include <debug.h> 31 31 #include <arch/trap/trap.h> 32 32 #include <arch/console.h> 33 33 #include <arch/drivers/tick.h> 34 #include <proc/thread.h> 34 35 35 36 void arch_pre_mm_init(void) … … 51 52 void arch_post_smp_init(void) 52 53 { 54 thread_t *t; 55 56 /* 57 * Create thread that reads characters from OFW's input. 58 */ 59 t = thread_create(kofwinput, NULL, TASK, 0); 60 if (!t) 61 panic("cannot create kofwinput\n"); 62 thread_ready(t); 53 63 } 54 64
Note:
See TracChangeset
for help on using the changeset viewer.
