Searched refs:TIMER_ABSTIME (Results 1 - 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_clock_nanosleep.c57 ATF_REQUIRE(clock_nanosleep(CLOCK_REALTIME, TIMER_ABSTIME, &rqtp, &rmtp) == 0);
/freebsd-12-stable/include/
H A Dtime.h125 #if !defined(TIMER_ABSTIME) && __POSIX_VISIBLE >= 199506
126 #define TIMER_ABSTIME 0x1 /* absolute timer */ macro
127 #endif /* !defined(TIMER_ABSTIME) && __POSIX_VISIBLE >= 199506 */
/freebsd-12-stable/contrib/netbsd-tests/lib/librt/
H A Dt_sem.c268 SEM_REQUIRE(sem_clockwait_np(&sem, CLOCK_MONOTONIC, TIMER_ABSTIME,
271 sem_clockwait_np(&sem, CLOCK_MONOTONIC, TIMER_ABSTIME, &ts, NULL));
292 TIMER_ABSTIME, &ts, &remain));
/freebsd-12-stable/lib/libc/gen/
H A Dsem_new.c362 tms.timeout._flags = (flags & TIMER_ABSTIME) ? UMTX_ABSTIME : 0;
368 if (retval == -1 && errno == EINTR && (flags & TIMER_ABSTIME) == 0 &&
437 return (_sem_clockwait_np(sem, CLOCK_REALTIME, TIMER_ABSTIME, abstime,
/freebsd-12-stable/sys/sys/
H A Dtime.h485 #ifndef TIMER_ABSTIME
487 #define TIMER_ABSTIME 0x1 /* absolute timer */ macro
/freebsd-12-stable/sys/kern/
H A Dkern_time.c512 if ((flags & ~TIMER_ABSTIME) != 0)
519 is_abs_real = (flags & TIMER_ABSTIME) != 0;
539 if ((flags & TIMER_ABSTIME) != 0) {
573 if ((flags & TIMER_ABSTIME) == 0 && rmt != NULL) {
630 if (error == EINTR && ua_rmtp != NULL && (flags & TIMER_ABSTIME) == 0) {
1551 if ((flags & TIMER_ABSTIME) == 0) {
/freebsd-12-stable/sys/compat/linux/
H A Dlinux_time.c251 *nflags |= TIMER_ABSTIME;
639 if (error == EINTR && (flags & TIMER_ABSTIME) == 0 &&
/freebsd-12-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c2703 if (error == EINTR && ua_rmtp != NULL && (flags & TIMER_ABSTIME) == 0) {

Completed in 182 milliseconds