Changeset 5f85c91 in mainline for generic/include
- 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:
- generic/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/cpu.h
r389f41e r5f85c91 53 53 link_t timeout_active_head; 54 54 55 #ifdef __SMP__55 #ifdef CONFIG_SMP 56 56 int kcpulbstarted; 57 57 waitq_t kcpulb_wq; 58 #endif /* __SMP__*/58 #endif /* CONFIG_SMP */ 59 59 60 60 int id; -
generic/include/mm/tlb.h
r389f41e r5f85c91 34 34 extern void tlb_init(void); 35 35 36 #ifdef __SMP__36 #ifdef CONFIG_SMP 37 37 extern void tlb_shootdown_start(void); 38 38 extern void tlb_shootdown_finalize(void); … … 42 42 # define tlb_shootdown_finalize() ; 43 43 # define tlb_shootdown_ipi_recv() ; 44 #endif /* __SMP__*/44 #endif /* CONFIG_SMP */ 45 45 46 46 /* Export TLB interface that each architecture must implement. */ -
generic/include/smp/ipi.h
r389f41e r5f85c91 30 30 #define __IPI_H__ 31 31 32 #ifdef __SMP__32 #ifdef CONFIG_SMP 33 33 extern void ipi_broadcast(int ipi); 34 34 extern void ipi_broadcast_arch(int ipi); 35 35 #else 36 36 #define ipi_broadcast(x) ; 37 #endif /* __SMP__*/37 #endif /* CONFIG_SMP */ 38 38 39 39 #endif -
generic/include/smp/smp.h
r389f41e r5f85c91 30 30 #define __SMP_H__ 31 31 32 #ifdef __SMP__32 #ifdef CONFIG_SMP 33 33 extern void smp_init(void); 34 34 #else 35 35 #define smp_init() ; 36 #endif /* __SMP__*/36 #endif /* CONFIG_SMP */ 37 37 38 38 #endif /* __SMP_H__ */ -
generic/include/synch/spinlock.h
r389f41e r5f85c91 34 34 #include <preemption.h> 35 35 36 #ifdef __SMP__36 #ifdef CONFIG_SMP 37 37 struct spinlock { 38 38 int val;
Note:
See TracChangeset
for help on using the changeset viewer.
