summaryrefslogtreecommitdiffstats
path: root/Python/parking_lot.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-02-20 22:16:37 (GMT)
committerGitHub <noreply@github.com>2024-02-20 22:16:37 (GMT)
commit52d14775665a6fde518ee3da88a73f39b09d993f (patch)
tree7aa83b307d5af59761a769d4a54746b7a7c81fc2 /Python/parking_lot.c
parente1fdc3c323bd605f92622b7ee18805885ff0bb4e (diff)
downloadcpython-52d14775665a6fde518ee3da88a73f39b09d993f.zip
cpython-52d14775665a6fde518ee3da88a73f39b09d993f.tar.gz
cpython-52d14775665a6fde518ee3da88a73f39b09d993f.tar.bz2
gh-110850: Rename internal PyTime C API functions (#115734)
Rename functions: * _PyTime_GetSystemClock() => _PyTime_TimeUnchecked() * _PyTime_GetPerfCounter() => _PyTime_PerfCounterUnchecked() * _PyTime_GetMonotonicClock() => _PyTime_MonotonicUnchecked() * _PyTime_GetSystemClockWithInfo() => _PyTime_TimeWithInfo() * _PyTime_GetMonotonicClockWithInfo() => _PyTime_MonotonicWithInfo() * _PyTime_GetMonotonicClockWithInfo() => _PyTime_MonotonicWithInfo() Changes: * Remove "typedef PyTime_t PyTime_t;" which was "typedef PyTime_t _PyTime_t;" before a previous rename. * Update comments of "Unchecked" functions. * Remove invalid PyTime_Time() comment.
Diffstat (limited to 'Python/parking_lot.c')
-rw-r--r--Python/parking_lot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/parking_lot.c b/Python/parking_lot.c
index 9bf8376..0a897f9 100644
--- a/Python/parking_lot.c
+++ b/Python/parking_lot.c
@@ -6,7 +6,7 @@
#include "pycore_pyerrors.h" // _Py_FatalErrorFormat
#include "pycore_pystate.h" // _PyThreadState_GET
#include "pycore_semaphore.h" // _PySemaphore
-#include "pycore_time.h" //_PyTime_GetMonotonicClock()
+#include "pycore_time.h" //_PyTime_MonotonicUnchecked()
#include <stdbool.h>
@@ -120,13 +120,13 @@ _PySemaphore_PlatformWait(_PySemaphore *sema, PyTime_t timeout)
struct timespec ts;
#if defined(CLOCK_MONOTONIC) && defined(HAVE_SEM_CLOCKWAIT)
- PyTime_t deadline = _PyTime_Add(_PyTime_GetMonotonicClock(), timeout);
+ PyTime_t deadline = _PyTime_Add(_PyTime_MonotonicUnchecked(), timeout);
_PyTime_AsTimespec_clamp(deadline, &ts);
err = sem_clockwait(&sema->platform_sem, CLOCK_MONOTONIC, &ts);
#else
- PyTime_t deadline = _PyTime_Add(_PyTime_GetSystemClock(), timeout);
+ PyTime_t deadline = _PyTime_Add(_PyTime_TimeUnchecked(), timeout);
_PyTime_AsTimespec_clamp(deadline, &ts);
@@ -163,7 +163,7 @@ _PySemaphore_PlatformWait(_PySemaphore *sema, PyTime_t timeout)
_PyTime_AsTimespec_clamp(timeout, &ts);
err = pthread_cond_timedwait_relative_np(&sema->cond, &sema->mutex, &ts);
#else
- PyTime_t deadline = _PyTime_Add(_PyTime_GetSystemClock(), timeout);
+ PyTime_t deadline = _PyTime_Add(_PyTime_TimeUnchecked(), timeout);
_PyTime_AsTimespec_clamp(deadline, &ts);
err = pthread_cond_timedwait(&sema->cond, &sema->mutex, &ts);