summaryrefslogtreecommitdiffstats
path: root/arch/m68k/include/asm/processor.h
diff options
context:
space:
mode:
authorGreg Ungerer2009-07-07 07:32:08 +0200
committerGreg Ungerer2009-12-04 02:45:30 +0100
commitc23b6538d08c8da5e401b8d7c912b322e8ec9c26 (patch)
tree9c1f0e3ef76661fa2cfa6f63899b21d7097790ac /arch/m68k/include/asm/processor.h
parentm68knommu: define arch_has_single_step() and friends (diff)
downloadkernel-qcow2-linux-c23b6538d08c8da5e401b8d7c912b322e8ec9c26.tar.gz
kernel-qcow2-linux-c23b6538d08c8da5e401b8d7c912b322e8ec9c26.tar.xz
kernel-qcow2-linux-c23b6538d08c8da5e401b8d7c912b322e8ec9c26.zip
m68knommu: add a task_pt_regs() macro
Add a task_pt_regs() macro as per the CONFIG_UTRACE requirements. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/include/asm/processor.h')
-rw-r--r--arch/m68k/include/asm/processor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/processor.h b/arch/m68k/include/asm/processor.h
index 74fd674b15ad..cbd3d4751dd2 100644
--- a/arch/m68k/include/asm/processor.h
+++ b/arch/m68k/include/asm/processor.h
@@ -165,6 +165,8 @@ unsigned long get_wchan(struct task_struct *p);
eip; })
#define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
+#define task_pt_regs(tsk) ((struct pt_regs *) ((tsk)->thread.esp0))
+
#define cpu_relax() barrier()
#endif