Sign in
cobalt
/
cobalt
/
788710a0d7b1b8d8e2340dd5fad5e8783a239862
/
.
/
third_party
/
musl
/
src
/
thread
/
pthread_getcpuclockid.c
blob: 9df14fb68952463d5e4606ef19fa4f6ca043d2ec [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_getcpuclockid
(
pthread_t
t
,
clockid_t
*
clockid
)
{
*
clockid
=
(-
t
->
tid
-
1
)*
8U
+
6
;
return
0
;
}