Changeset 5f85c91 in mainline for arch/ia32/src/smp
- Timestamp:
- 2005-11-08T12:22:35Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a140b
- Parents:
- 389f41e
- Location:
- arch/ia32/src/smp
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/smp/ap.S
r389f41e r5f85c91 33 33 .section K_TEXT_START_2, "ax" 34 34 35 #ifdef __SMP__35 #ifdef CONFIG_SMP 36 36 37 37 .global ap_boot … … 74 74 jmpl $KTEXT, $main_ap 75 75 76 #endif /* __SMP__*/76 #endif /* CONFIG_SMP */ -
arch/ia32/src/smp/apic.c
r389f41e r5f85c91 38 38 #include <arch.h> 39 39 40 #ifdef __SMP__40 #ifdef CONFIG_SMP 41 41 42 42 /* … … 417 417 } 418 418 419 #endif /* __SMP__*/419 #endif /* CONFIG_SMP */ -
arch/ia32/src/smp/ipi.c
r389f41e r5f85c91 27 27 */ 28 28 29 #ifdef __SMP__29 #ifdef CONFIG_SMP 30 30 31 31 #include <smp/ipi.h> … … 37 37 } 38 38 39 #endif /* __SMP__*/39 #endif /* CONFIG_SMP */ -
arch/ia32/src/smp/mps.c
r389f41e r5f85c91 27 27 */ 28 28 29 #ifdef __SMP__29 #ifdef CONFIG_SMP 30 30 31 31 #include <config.h> … … 423 423 } 424 424 425 #endif /* __SMP__*/425 #endif /* CONFIG_SMP */ -
arch/ia32/src/smp/smp.c
r389f41e r5f85c91 48 48 #include <arch/i8259.h> 49 49 50 #ifdef __SMP__50 #ifdef CONFIG_SMP 51 51 52 52 static struct smp_config_operations *ops = NULL; … … 166 166 } 167 167 168 #endif /* __SMP__*/168 #endif /* CONFIG_SMP */
Note:
See TracChangeset
for help on using the changeset viewer.