Sign in
mojo
/
mojo-tools
/
74b0cac9bdd351dc67c6fc99a7a8b64e85de2f5d
/
.
/
fusl
/
src
/
thread
/
pthread_self.c
blob: 9c05904f0ff21dff059e4e8ab762cefa158332fb [
file
]
#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
);