um: get rid of pointless include "..." where include <...> will do
[linux-2.6-block.git] / arch / x86 / um / tls_64.c
CommitLineData
37185b33 1#include <linux/sched.h>
aa6758d4 2
aa6758d4
PBG
3void clear_flushed_tls(struct task_struct *task)
4{
5}
6
7int arch_copy_tls(struct task_struct *t)
8{
f355559c
JD
9 /*
10 * If CLONE_SETTLS is set, we need to save the thread id
11 * (which is argument 5, child_tid, of clone) so it can be set
12 * during context switches.
13 */
18baddda 14 t->thread.arch.fs = t->thread.regs.regs.gp[R8 / sizeof(long)];
f355559c 15
ba180fd4 16 return 0;
aa6758d4 17}