pthread_getcpuclockid - access a thread CPU-time clock (ADVANCED REALTIME THREADS)
[TCT] #include <pthread.h>
#include <time.h>
int pthread_getcpuclockid(pthread_t thread_id, clockid_t *clock_id);
The pthread_getcpuclockid() function shall return in clock_id the clock ID of the CPU-time clock of the thread specified by thread_id, if the thread specified by thread_id exists.
Upon successful completion, pthread_getcpuclockid() shall return zero; otherwise, an error number shall be returned to indicate the error.
No errors are defined.
None.
The pthread_getcpuclockid() function is part of the Thread CPU-Time Clocks option and need not be provided on all implementations.
If an implementation detects use of a thread ID after the end of its lifetime, it is recommended that the function should fail and report an [ESRCH] error.
None.
clock_getcpuclockid, clock_getres, timer_create
XBD <pthread.h>, <time.h>
First released in Issue 6. Derived from IEEE Std 1003.1d-1999.
In the SYNOPSIS, the inclusion of <sys/types.h> is no longer required.
The pthread_getcpuclockid() function is marked only as part of the Thread CPU-Time Clocks option as the Threads option is now part of the Base.
Austin Group Interpretation 1003.1-2001 #142 is applied, removing the [ESRCH] error condition.
POSIX.1-2008, Technical Corrigendum 2, XSH/TC2-2008/0275 [757] is applied.
return to top of page