Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / um / sys-ppc / ptrace.c
blob8e71b47f2b8ed86f9bee12696b773c3e99f011e8
1 #include "linux/sched.h"
2 #include "asm/ptrace.h"
4 int putreg(struct task_struct *child, unsigned long regno,
5 unsigned long value)
7 child->thread.process_regs.regs[regno >> 2] = value;
8 return 0;
11 int poke_user(struct task_struct *child, long addr, long data)
13 if ((addr & 3) || addr < 0)
14 return -EIO;
16 if (addr < MAX_REG_OFFSET)
17 return putreg(child, addr, data);
19 else if((addr >= offsetof(struct user, u_debugreg[0])) &&
20 (addr <= offsetof(struct user, u_debugreg[7]))){
21 addr -= offsetof(struct user, u_debugreg[0]);
22 addr = addr >> 2;
23 if((addr == 4) || (addr == 5)) return -EIO;
24 child->thread.arch.debugregs[addr] = data;
25 return 0;
27 return -EIO;
30 unsigned long getreg(struct task_struct *child, unsigned long regno)
32 unsigned long retval = ~0UL;
34 retval &= child->thread.process_regs.regs[regno >> 2];
35 return retval;
38 int peek_user(struct task_struct *child, long addr, long data)
40 /* read the word at location addr in the USER area. */
41 unsigned long tmp;
43 if ((addr & 3) || addr < 0)
44 return -EIO;
46 tmp = 0; /* Default return condition */
47 if(addr < MAX_REG_OFFSET){
48 tmp = getreg(child, addr);
50 else if((addr >= offsetof(struct user, u_debugreg[0])) &&
51 (addr <= offsetof(struct user, u_debugreg[7]))){
52 addr -= offsetof(struct user, u_debugreg[0]);
53 addr = addr >> 2;
54 tmp = child->thread.arch.debugregs[addr];
56 return put_user(tmp, (unsigned long *) data);
60 * Overrides for Emacs so that we follow Linus's tabbing style.
61 * Emacs will notice this stuff at the end of the file and automatically
62 * adjust the settings for this buffer only. This must remain at the end
63 * of the file.
64 * ---------------------------------------------------------------------------
65 * Local variables:
66 * c-file-style: "linux"
67 * End: