Changeset 897fd8f1 in mainline for kernel/arch/sparc64/src
- Timestamp:
- 2017-12-19T18:18:15Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 55b56f4
- Parents:
- 7f11dc6
- Location:
- kernel/arch/sparc64/src/smp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/smp/sun4u/smp.c
r7f11dc6 r897fd8f1 106 106 waking_up_mid = mid; 107 107 108 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, SYNCH_FLAGS_NONE) ==109 ESYNCH_TIMEOUT)108 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, 109 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) 110 110 log(LF_ARCH, LVL_NOTE, "%s: waiting for processor (mid = %" PRIu32 111 111 ") timed out", __func__, mid); -
kernel/arch/sparc64/src/smp/sun4v/smp.c
r7f11dc6 r897fd8f1 373 373 #endif 374 374 375 if (waitq_sleep_timeout(&ap_completion_wq, 10000000, SYNCH_FLAGS_NONE) ==376 ESYNCH_TIMEOUT)375 if (waitq_sleep_timeout(&ap_completion_wq, 10000000, 376 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) 377 377 printf("%s: waiting for processor (cpuid = %" PRIu64 ") timed out\n", 378 378 __func__, cpuid);
Note:
See TracChangeset
for help on using the changeset viewer.