use syscall_arg_t and __scc macro for arguments to __alt_socketcall
[musl] / src / thread / x32 / __set_thread_area.s
index f3ff4f6..c0fee87 100644 (file)
@@ -1,10 +1,11 @@
 /* Copyright 2011-2012 Nicholas J. Kain, licensed under standard MIT license */
 .text
 .global __set_thread_area
+.hidden __set_thread_area
 .type __set_thread_area,@function
 __set_thread_area:
-       mov %rdi,%rsi           /* shift for syscall */
+       mov %edi,%esi           /* shift for syscall */
        movl $0x1002,%edi       /* SET_FS register */
-       movl $158,%eax          /* set fs segment to */
+       movl $0x4000009e,%eax          /* set fs segment to */
        syscall                 /* arch_prctl(SET_FS, arg)*/
        ret