Home | History | Annotate | Download | only in libpthread

Lines Matching refs:abs_timeout

407 			   const struct timespec *abs_timeout)
409 if (abs_timeout == NULL)
411 if ((abs_timeout->tv_nsec >= 1000000000) ||
412 (abs_timeout->tv_nsec < 0) ||
413 (abs_timeout->tv_sec < 0))
416 return pthread__rwlock_rdlock(ptr, abs_timeout);
430 const struct timespec *abs_timeout)
432 if (abs_timeout == NULL)
434 if ((abs_timeout->tv_nsec >= 1000000000) ||
435 (abs_timeout->tv_nsec < 0) ||
436 (abs_timeout->tv_sec < 0))
439 return pthread__rwlock_wrlock(ptr, abs_timeout);