Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
musl
/
src
/
thread
/
pthread_self.c
blob: bd3bf95bb708ad6ce1f324e5e4eea05d978d172d [
file
]
#include
"pthread_impl.h"
#include
<threads.h>
static
pthread_t
__pthread_self_internal
()
{
return
__pthread_self
();
}
weak_alias
(
__pthread_self_internal
,
pthread_self
);
weak_alias
(
__pthread_self_internal
,
thrd_current
);