Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
thread
__set_thread_area.c
pretty
plain
permalink
blame
history
•
10 lines
•
162 B
1
#include "pthread_impl.h"
2
3
int __set_thread_area(void *p)
4
{
5
#ifdef SYS_set_thread_area
6
	return __syscall(SYS_set_thread_area, p);
7
#else
8
	return -ENOSYS;
9
#endif
10
}