Changeset acee917 in mainline for kernel/arch/ia64/src/smp/smp.c
- Timestamp:
- 2009-01-04T22:51:09Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 59b2adb
- Parents:
- 0e56eb1a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/smp/smp.c
r0e56eb1a racee917 74 74 static void ipi_broadcast_arch_all(int ipi) 75 75 { 76 int id, eid;76 int id, eid; 77 77 int myid, myeid; 78 78 … … 88 88 void ipi_broadcast_arch(int ipi ) 89 89 { 90 int id, eid;91 int myid, myeid;90 int id, eid; 91 int myid, myeid; 92 92 93 93 myid = ia64_get_cpu_id(); … … 107 107 108 108 /* 109 * If we have not system prepared by hello, we are not able to start109 * If we have not got system prepared by hello, we are not able to start 110 110 * AP's. This means we are running on a simulator. 111 111 */ … … 130 130 void kmp(void *arg __attribute__((unused))) 131 131 { 132 int id, eid;132 int id, eid; 133 133 int myid, myeid; 134 134 … … 166 166 #endif 167 167 168 169 #ifndef CONFIG_SMP170 171 /* This is just a hack for linking with assembler - may be removed in future. */172 void main_ap(void);173 void main_ap(void)174 {175 while(1)176 ;177 }178 179 #endif180 181 168 /** @} 182 169 */
Note:
See TracChangeset
for help on using the changeset viewer.