diff options
author | Maxim Kuvyrkov <maxim@codesourcery.com> | 2009-12-06 13:08:14 -0500 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2010-02-27 12:35:22 -0500 |
commit | a58f75349063f60949614de39390df594ba1418d (patch) | |
tree | b0fec4508132df99cfa81e5d9f080028fe234b91 /arch/m68knommu/kernel/process.c | |
parent | 9674cdc74d63f346870943ef966a034f8c71ee57 (diff) |
m68knommu: NPTL support for uClinux
Port syscalls for NPTL support to m68knommu.
Signed-off-by: Maxim Kuvyrkov <maxim@codesourcery.com>
Acked-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68knommu/kernel/process.c')
-rw-r--r-- | arch/m68knommu/kernel/process.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68knommu/kernel/process.c b/arch/m68knommu/kernel/process.c index 5c9ecd427090..959cb249c759 100644 --- a/arch/m68knommu/kernel/process.c +++ b/arch/m68knommu/kernel/process.c | |||
@@ -221,6 +221,10 @@ int copy_thread(unsigned long clone_flags, | |||
221 | 221 | ||
222 | p->thread.usp = usp; | 222 | p->thread.usp = usp; |
223 | p->thread.ksp = (unsigned long)childstack; | 223 | p->thread.ksp = (unsigned long)childstack; |
224 | |||
225 | if (clone_flags & CLONE_SETTLS) | ||
226 | task_thread_info(p)->tp_value = regs->d5; | ||
227 | |||
224 | /* | 228 | /* |
225 | * Must save the current SFC/DFC value, NOT the value when | 229 | * Must save the current SFC/DFC value, NOT the value when |
226 | * the parent was last descheduled - RGH 10-08-96 | 230 | * the parent was last descheduled - RGH 10-08-96 |