mirror of
git://git.musl-libc.org/musl
synced 2025-03-05 19:27:27 +00:00
dummy implementation of set_thread_area
eventually we may have a working "generic" implementation for archs that don't need anything special. in any case, the goal of having stubs like this is to allow early testing of new ports before all the details needed for threads have been filled in. more functions like this will follow.
This commit is contained in:
parent
471c6067d9
commit
d5fd1fa485
@ -0,0 +1,6 @@
|
||||
#include <pthread_impl.h>
|
||||
|
||||
int __set_thread_area(void *p)
|
||||
{
|
||||
return -1;
|
||||
}
|
Loading…
Reference in New Issue
Block a user