Files
musl/src/thread/__set_thread_area.c
Rich Felker d0bfbd9dca generic c version of __set_thread_area for archs where it works
on other archs, like x86[_64], asm version is required
2012-07-11 11:34:46 -04:00

11 lines
162 B
C

#include "pthread_impl.h"
int __set_thread_area(void *p)
{
#ifdef SYS_set_thread_area
return __syscall(SYS_set_thread_area, p);
#else
return -ENOSYS;
#endif
}