summaryrefslogtreecommitdiff
path: root/src/thread/x32/__set_thread_area.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/x32/__set_thread_area.s')
-rw-r--r--src/thread/x32/__set_thread_area.s10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/thread/x32/__set_thread_area.s b/src/thread/x32/__set_thread_area.s
new file mode 100644
index 00000000..f3ff4f61
--- /dev/null
+++ b/src/thread/x32/__set_thread_area.s
@@ -0,0 +1,10 @@
+/* Copyright 2011-2012 Nicholas J. Kain, licensed under standard MIT license */
+.text
+.global __set_thread_area
+.type __set_thread_area,@function
+__set_thread_area:
+ mov %rdi,%rsi /* shift for syscall */
+ movl $0x1002,%edi /* SET_FS register */
+ movl $158,%eax /* set fs segment to */
+ syscall /* arch_prctl(SET_FS, arg)*/
+ ret