bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28662)
On Unix, if the sem_clockwait() function is available in the C library (glibc 2.30 and newer), the threading.Lock.acquire() method now uses the monotonic clock (time.CLOCK_MONOTONIC) for the timeout, rather than using the system clock (time.CLOCK_REALTIME), to not be affected by system clock changes. configure now checks if the sem_clockwait() function is available.
V
Victor Stinner committed
1ee0f94d16f150356a4b9b0a39d44ba1d2d5b9fc
Parent: 3e1c5d9
Committed by GitHub <noreply@github.com>
on 10/1/2021, 7:55:28 AM