Release 4.11 arch/x86/um/tls_64.c
#include <linux/sched.h>
#include <asm/ptrace-abi.h>
void clear_flushed_tls(struct task_struct *task)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Paolo 'Blaisorblade' Giarrusso | 9 | 100.00% | 1 | 100.00% |
Total | 9 | 100.00% | 1 | 100.00% |
int arch_copy_tls(struct task_struct *t)
{
/*
* If CLONE_SETTLS is set, we need to save the thread id
* (which is argument 5, child_tid, of clone) so it can be set
* during context switches.
*/
t->thread.arch.fs = t->thread.regs.regs.gp[R8 / sizeof(long)];
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 27 | 67.50% | 2 | 66.67% |
Paolo 'Blaisorblade' Giarrusso | 13 | 32.50% | 1 | 33.33% |
Total | 40 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 27 | 49.09% | 2 | 40.00% |
Paolo 'Blaisorblade' Giarrusso | 24 | 43.64% | 1 | 20.00% |
Richard Weinberger | 3 | 5.45% | 1 | 20.00% |
Al Viro | 1 | 1.82% | 1 | 20.00% |
Total | 55 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.