Changeset 88636f68 in mainline
- Timestamp:
- 2006-06-10T10:17:05Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 971cf31f
- Parents:
- fd7faa87
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/smp/apic.c
rfd7faa87 r88636f68 228 228 229 229 icr.lo = l_apic[ICRlo]; 230 if (icr.delivs == DELIVS_PENDING) 230 if (icr.delivs == DELIVS_PENDING) { 231 #ifdef CONFIG_DEBUG 231 232 printf("IPI is pending.\n"); 233 #endif 234 } 232 235 233 236 return apic_poll_errors(); … … 268 271 delay(20); 269 272 270 if (!apic_poll_errors()) return 0; 273 if (!apic_poll_errors()) 274 return 0; 271 275 272 276 icr.lo = l_apic[ICRlo]; 273 if (icr.delivs == DELIVS_PENDING) 277 if (icr.delivs == DELIVS_PENDING) { 278 #ifdef CONFIG_DEBUG 274 279 printf("IPI is pending.\n"); 280 #endif 281 } 275 282 276 283 icr.delmod = DELMOD_INIT; -
generic/src/proc/task.c
rfd7faa87 r88636f68 437 437 } 438 438 439 /** Kernel t ask used to kill auserspace task when its main thread exits.439 /** Kernel thread used to kill the userspace task when its main thread exits. 440 440 * 441 441 * This thread waits until the main userspace thread (i.e. uninit) exits.
Note:
See TracChangeset
for help on using the changeset viewer.