From 92b9d75d7256be71d8c8b18438af9494b78f0e96 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 11 May 2015 23:44:36 +0200 Subject: threads: use utility+POSIX functions instead of weird wrappers There is not much of a reason to have these wrappers around. Use POSIX standard functions directly, and use a separate utility function to take care of the timespec calculations. (Course POSIX for using this weird format for time values.) --- osdep/timer.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'osdep/timer.h') diff --git a/osdep/timer.h b/osdep/timer.h index 547323943d..427bcc3ccb 100644 --- a/osdep/timer.h +++ b/osdep/timer.h @@ -52,4 +52,8 @@ int64_t mp_add_timeout(int64_t time_us, double timeout_sec); // Convert the mp time in microseconds to a timespec using CLOCK_REALTIME. struct timespec mp_time_us_to_timespec(int64_t time_us); +// Convert the relative timeout in seconds to a timespec. +// The timespec is absolute, using CLOCK_REALTIME. +struct timespec mp_rel_time_to_timespec(double timeout_sec); + #endif /* MPLAYER_TIMER_H */ -- cgit v1.2.3