Merge tag 'v3.3.7' into 3.3/master
[zen-stable.git] / arch / um / include / asm / ptrace-generic.h
blobf605d3c4844cb1e2883a31daf36bc96f2b2e536e
1 /*
2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #ifndef __UM_PTRACE_GENERIC_H
7 #define __UM_PTRACE_GENERIC_H
9 #ifndef __ASSEMBLY__
11 #include <asm/ptrace-abi.h>
12 #include <asm/user.h>
13 #include "sysdep/ptrace.h"
15 struct pt_regs {
16 struct uml_pt_regs regs;
19 #define arch_has_single_step() (1)
21 #define EMPTY_REGS { .regs = EMPTY_UML_PT_REGS }
23 #define PT_REGS_IP(r) UPT_IP(&(r)->regs)
24 #define PT_REGS_SP(r) UPT_SP(&(r)->regs)
26 #define PT_REGS_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs)
28 #define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs)
30 #define instruction_pointer(regs) PT_REGS_IP(regs)
32 struct task_struct;
34 extern long subarch_ptrace(struct task_struct *child, long request,
35 unsigned long addr, unsigned long data);
36 extern unsigned long getreg(struct task_struct *child, int regno);
37 extern int putreg(struct task_struct *child, int regno, unsigned long value);
39 extern int arch_copy_tls(struct task_struct *new);
40 extern void clear_flushed_tls(struct task_struct *task);
42 #endif
44 #endif