- Timestamp:
- 2005-04-30T16:47:17Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 30ef8ce
- Parents:
- 10a2e22
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile
r10a2e22 red0dd65 30 30 ifdef DEBUG_SPINLOCK 31 31 CFLAGS+=-D$(DEBUG_SPINLOCK) 32 endif 33 34 ifdef USERSPACE 35 CFLAGS+=-D$(USERSPACE) 32 36 endif 33 37 -
src/Makefile.config
r10a2e22 red0dd65 14 14 DEBUG_SPINLOCK=DEBUG_SPINLOCK 15 15 16 # Uncomment if you want to compile in userspace support 17 #USERSPACE=__USERSPACE__ 18 16 19 # Uncomment if you want to run in the test mode 17 TEST=__TEST__20 #TEST=__TEST__ 18 21 19 22 TEST_FILE=test.c -
src/main/kinit.c
r10a2e22 red0dd65 43 43 44 44 #ifdef __SMP__ 45 #include <arch/smp/mp .h>45 #include <arch/smp/mps.h> 46 46 #endif /* __SMP__ */ 47 47 … … 115 115 cpu_priority_low(); 116 116 117 #ifdef __USERSPACE__ 117 118 /* 118 119 * Create the first user task. … … 139 140 140 141 thread_ready(t); 142 #endif /* __USERSPACE__ */ 141 143 142 144 #ifdef __TEST__ -
src/main/main.c
r10a2e22 red0dd65 42 42 #ifdef __SMP__ 43 43 #include <arch/smp/apic.h> 44 #include <arch/smp/mp .h>44 #include <arch/smp/mps.h> 45 45 #endif /* __SMP__ */ 46 47 #include <smp/smp.h> 46 48 47 49 #include <mm/frame.h> … … 118 120 arch_late_init(); 119 121 122 smp_init(); 120 123 printf("config.cpu_count=%d\n", config.cpu_count); 121 124
Note:
See TracChangeset
for help on using the changeset viewer.