This website requires JavaScript.
Explore
Help
Sign In
fluencelabs
/
musl
Watch
1
Star
0
Fork
0
You've already forked musl
mirror of
https://github.com/fluencelabs/musl
synced
2025-05-22 20:21:32 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
musl
/
src
/
thread
/
__set_thread_area.c
7 lines
74 B
C
Raw
Normal View
History
Unescape
Escape
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.
2011-09-17 11:37:46 -04:00
#
include
<pthread_impl.h>
int
__set_thread_area
(
void
*
p
)
{
return
-
1
;
}
Reference in New Issue
Copy Permalink