man.bsd.lv manual page server

Manual Page Search Parameters

PTHREAD_GETCPUCLOCKID(3) Library Functions Manual PTHREAD_GETCPUCLOCKID(3)

pthread_getcpuclockidaccess a thread CPU-time clock

library “libpthread”

#include <pthread.h>
#include <time.h>

int
pthread_getcpuclockid(pthread_t thread, clockid_t *clock_id);

The () returns the clock ID of the CPU-time clock of the thread specified by thread, if the thread described by thread exists.

Upon successful completion, pthread_getcpuclockid() returns zero; otherwise, an error number is returned to indicate the error.

The pthread_getcpuclockid() function will fail if:

[]
The value specified by thread does not refer to an existing thread.

clock_gettime(2), clock_getcpuclockid(3)

The pthread_getcpuclockid() function conforms to IEEE Std 1003.1-2004 (“POSIX.1”).

The pthread_getcpuclockid() function first appeared in FreeBSD 10.0 and was ported to DragonFly 4.9.

David Xu <davidxu@FreeBSD.org>

July 26, 2017 DragonFly-5.6.1