diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-15 03:56:52 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-15 03:56:52 -0500 |
commit | 7b2dd2235dd0db3a2f71e25d1c0925e0348e1996 (patch) | |
tree | 26cab4bb4f2bff3b4cf8ccb2c0e497cf9631c893 /src/thread/__set_thread_area.c | |
parent | 0b2006c8fea021b7fa1fd267bf270cb8c279f230 (diff) | |
download | musl-7b2dd2235dd0db3a2f71e25d1c0925e0348e1996.tar.gz musl-7b2dd2235dd0db3a2f71e25d1c0925e0348e1996.tar.bz2 musl-7b2dd2235dd0db3a2f71e25d1c0925e0348e1996.tar.xz musl-7b2dd2235dd0db3a2f71e25d1c0925e0348e1996.zip |
finish unifying thread register handling in preparation for porting
Diffstat (limited to 'src/thread/__set_thread_area.c')
-rw-r--r-- | src/thread/__set_thread_area.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/thread/__set_thread_area.c b/src/thread/__set_thread_area.c index 576d8b40..e69de29b 100644 --- a/src/thread/__set_thread_area.c +++ b/src/thread/__set_thread_area.c @@ -1,9 +0,0 @@ -#include "syscall.h" - -int __set_thread_area(unsigned long *desc) -{ - if (syscall1(__NR_set_thread_area, (long)desc) < 0) - return -1; - __asm__ __volatile__ ( "movw %w0,%%gs" : : "r"(desc[0]*8+3) ); - return 0; -} |