Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 1 of 1) sorted by relevance

/TaskScheduler/Scheduler/Include/Platform/Posix/
H A DMTEvent.h182 struct timespec ts; in Wait() local
189 ts.tv_sec = (time_t)(nanoseconds / 1000 / 1000 / 1000); in Wait()
190 ts.tv_nsec = (long)(nanoseconds - ((uint64_t) ts.tv_sec) * 1000 * 1000 * 1000); in Wait()
195 ret = pthread_cond_timedwait( &condition, &mutex, &ts ); in Wait()