Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
thread
/
pthread_getcpuclockid.c
blob: 9df14fb68952463d5e4606ef19fa4f6ca043d2ec [
file
]
#include
"pthread_impl.h"
int
pthread_getcpuclockid
(
pthread_t
t
,
clockid_t
*
clockid
)
{
*
clockid
=
(-
t
->
tid
-
1
)*
8U
+
6
;
return
0
;
}