musl-tcc/src/thread/pthread_getcpuclockid.c
2022-03-20 16:48:53 +08:00

8 lines
133 B
C

#include "pthread_impl.h"
int pthread_getcpuclockid(pthread_t t, clockid_t *clockid)
{
*clockid = (-t->tid-1)*8U + 6;
return 0;
}