Sign in
mojo
/
mojo
/
HEAD
/
.
/
fusl
/
src
/
thread
/
pthread_self.c
blob: 9c05904f0ff21dff059e4e8ab762cefa158332fb [
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
);