Changeset a83a802 in mainline for generic/src
- Timestamp:
- 2005-11-23T13:28:17Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8418c7d
- Parents:
- 607c5f9
- Location:
- generic/src/main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/main/kconsole.c
r607c5f9 ra83a802 50 50 printf("%s> ", __FUNCTION__); 51 51 gets(stdin, buf, sizeof(buf)); 52 printf("?\n"); 52 53 } 53 54 } -
generic/src/main/kinit.c
r607c5f9 ra83a802 118 118 119 119 /* 120 * At this point SMP, if present, is configured. 121 */ 122 arch_post_smp_init(); 123 124 /* 120 125 * Create kernel console. 121 126 */ … … 165 170 166 171 while (1) { 167 thread_sleep( 60);172 thread_sleep(1); 168 173 printf("kinit... "); 169 174 } -
generic/src/main/main.c
r607c5f9 ra83a802 171 171 arch_pre_smp_init(); 172 172 smp_init(); 173 arch_post_smp_init();174 173 printf("config.memory_size=%dM\n", config.memory_size/(1024*1024)); 175 174 printf("config.cpu_count=%d\n", config.cpu_count);
Note:
See TracChangeset
for help on using the changeset viewer.