You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should look into using pthread_cond_timedwait with a CLOCK_MONOTONIC argument or alternatively enable clock_gettime (supported by newer macOS/iOS releases) on Apple platforms.
The text was updated successfully, but these errors were encountered:
We should look into using pthread_cond_timedwait with a CLOCK_MONOTONIC argument or alternatively enable clock_gettime (supported by newer macOS/iOS releases) on Apple platforms.
See #58737 and related PRs.
CLOCK_MONOTONIC
is available on ios 10+, but notpthread_condattr_setclock
. We disable the code on Apple platforms usingBROKEN_CLOCK_SOURCE
inruntime/src/mono/mono/utils/mono-os-mutex.h
Lines 39 to 41 in 4211dc4
We should look into using
pthread_cond_timedwait
with aCLOCK_MONOTONIC
argument or alternatively enableclock_gettime
(supported by newer macOS/iOS releases) on Apple platforms.The text was updated successfully, but these errors were encountered: