f355559cf7
x86_64 needs some TLS fixes. What was missing was remembering the child thread id during clone and stuffing it into the child during each context switch. The %fs value is stored separately in the thread structure since the host controls what effect it has on the actual register file. The host also needs to store it in its own thread struct, so we need the value kept outside the register file. arch_prctl_skas was fixed to call PTRACE_ARCH_PRCTL appropriately. There is some saving and restoring of registers in the ARCH_SET_* cases so that the correct set of registers are changed on the host and restored to the process when it runs again. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
292 B
C
13 lines
292 B
C
/*
|
|
* Copyright (C) 2007 Jeff Dike (jdike@{addtoit.com,linux.intel.com})
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#include <sys/ptrace.h>
|
|
#include <linux/ptrace.h>
|
|
|
|
int os_arch_prctl(int pid, int code, unsigned long *addr)
|
|
{
|
|
return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) addr, code);
|
|
}
|