Sign in
cobalt
/
cobalt
/
08336faa599332e3e3bf29b7ad38ef023018b55e
/
.
/
third_party
/
musl
/
src
/
thread
/
pthread_self.c
blob: 241a6202d2ea5e15ca53a5e8676398f6c5c95b8e [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
#include
<threads.h>
#include
"libc.h"
static
pthread_t
__pthread_self_internal
()
{
return
__pthread_self
();
}
weak_alias
(
__pthread_self_internal
,
pthread_self
);
weak_alias
(
__pthread_self_internal
,
thrd_current
);