Changeset 7c5320c in mainline for kernel/arch
- Timestamp:
- 2023-02-07T16:03:05Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1eaead4
- Parents:
- 5110d0a
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-07 15:59:26)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-07 16:03:05)
- Location:
- kernel/arch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/smp/smp.c
r5110d0a r7c5320c 178 178 * supposed to wake us up. 179 179 */ 180 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, 181 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) { 180 if (semaphore_down_timeout(&ap_completion_semaphore, 1000000) != EOK) { 182 181 log(LF_ARCH, LVL_NOTE, "%s: waiting for cpu%u " 183 182 "(APIC ID = %d) timed out", __FUNCTION__, -
kernel/arch/sparc64/src/smp/sun4u/smp.c
r5110d0a r7c5320c 106 106 waking_up_mid = mid; 107 107 108 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, 109 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) 108 if (semaphore_down_timeout(&ap_completion_semaphore, 1000000) != EOK) 110 109 log(LF_ARCH, LVL_NOTE, "%s: waiting for processor (mid = %" PRIu32 111 110 ") timed out", __func__, mid); -
kernel/arch/sparc64/src/smp/sun4v/smp.c
r5110d0a r7c5320c 373 373 #endif 374 374 375 if (waitq_sleep_timeout(&ap_completion_wq, 10000000, 376 SYNCH_FLAGS_NONE, NULL) == ETIMEOUT) 375 if (semaphore_down_timeout(&ap_completion_semaphore, 10000000) != EOK) 377 376 printf("%s: waiting for processor (cpuid = %" PRIu64 ") timed out\n", 378 377 __func__, cpuid);
Note:
See TracChangeset
for help on using the changeset viewer.