Remove timeout slicing from __timedwait. NFC#26550
Remove timeout slicing from __timedwait. NFC#26550sbc100 merged 1 commit intoemscripten-core:mainfrom
Conversation
|
This change is currently stacked on top of #26549 |
93ec16e to
0050751
Compare
|
From Gemini: ✦ Review of Commit 0050751: "Remove timeout slicing from __timedwait. NFC" This commit simplifies the Emscripten-specific wait logic by centralizing timeout slicing in emscripten_futex_wait.c.
1 emscripten_conditional_set_current_thread_status(EM_THREAD_STATUS_WAITFUTEX, EM_THREAD_STATUS_RUNNING);
Final Verdict: LGTM |
This removes the timeout slicing from `__timedwait` and instead relies on the existing slicing in `emscripten_futex_wait.c`. This is a followup to emscripten-core#26511 and emscripten-core#26471 (which did the same for the slicing in `__wait`).
0050751 to
8c98aef
Compare
This removes the timeout slicing from
__timedwaitand instead relieson the existing slicing in
emscripten_futex_wait.c.This is a followup to #26511 and #26471 (which did the same for the
slicing in
__wait).