Next: Detecting Single-Threaded Execution, Previous: Controlling the Initial Signal Mask of a New Thread, Up: Non-POSIX Extensions [Contents][Index]
The GNU C Library provides several waiting functions that expect an explicit
clockid_t
argument.
const struct timespec *abstime)
Behaves like sem_timedwait
except the time abstime is measured
against the clock specified by clockid rather than
CLOCK_REALTIME
. Currently, clockid must be either
CLOCK_MONOTONIC
or CLOCK_REALTIME
.
clockid_t clockid, const struct timespec *abstime) Preliminary: | MT-Safe | AS-Unsafe lock | AC-Unsafe lock | See POSIX Safety Concepts.
Behaves like pthread_cond_timedwait
except the time abstime is
measured against the clock specified by clockid rather than the clock
specified or defaulted when pthread_cond_init
was called. Currently,
clockid must be either CLOCK_MONOTONIC
or
CLOCK_REALTIME
.
clockid_t clockid, const struct timespec *abstime)
Preliminary: | MT-Safe | AS-Unsafe lock | AC-Unsafe lock | See POSIX Safety Concepts.
Behaves like pthread_rwlock_timedrdlock
except the time
abstime is measured against the clock specified by clockid
rather than CLOCK_REALTIME
. Currently, clockid must be either
CLOCK_MONOTONIC
or CLOCK_REALTIME
, otherwise EINVAL
is
returned.
clockid_t clockid, const struct timespec *abstime)
Preliminary: | MT-Safe | AS-Unsafe lock | AC-Unsafe lock | See POSIX Safety Concepts.
Behaves like pthread_rwlock_timedwrlock
except the time
abstime is measured against the clock specified by clockid
rather than CLOCK_REALTIME
. Currently, clockid must be either
CLOCK_MONOTONIC
or CLOCK_REALTIME
, otherwise EINVAL
is
returned.
void **thread_return)
Preliminary: | MT-Safe | AS-Unsafe lock | AC-Unsafe lock | See POSIX Safety Concepts.
Behaves like pthread_join
except that it will return EBUSY
immediately if the thread specified by thread has not yet terminated.
void **thread_return, const struct timespec *abstime)
Preliminary: | MT-Safe | AS-Unsafe lock | AC-Unsafe lock | See POSIX Safety Concepts.
Behaves like pthread_tryjoin_np
except that it will block until the
absolute time abstime measured against CLOCK_REALTIME
is
reached if the thread has not terminated by that time and return
EBUSY
. If abstime is equal to NULL
then the function
will wait forever in the same way as pthread_join
.
void **thread_return, clockid_t clockid, const struct timespec *abstime)
Preliminary: | MT-Safe | AS-Unsafe lock | AC-Unsafe lock | See POSIX Safety Concepts.
Behaves like pthread_timedjoin_np
except that the absolute time in
abstime is measured against the clock specified by clockid.
Currently, clockid must be either CLOCK_MONOTONIC
or
CLOCK_REALTIME
.