Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11001
b: refs/heads/master
c: 09276d9
h: refs/heads/master
i:
  10999: d04440c
v: v3
  • Loading branch information
Ralf Baechle committed Oct 29, 2005
1 parent 899db9a commit afe43a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 54f2da755b7f0bf022ea204240cba824af4d80ad
refs/heads/master: 09276d905ef7498212ef69d5c324d027dc405896
6 changes: 5 additions & 1 deletion trunk/arch/mips/kernel/ptrace32.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#include <linux/smp_lock.h>
#include <linux/user.h>
#include <linux/security.h>
#include <linux/signal.h>

#include <asm/cpu.h>
#include <asm/fpu.h>
Expand Down Expand Up @@ -273,6 +272,11 @@ asmlinkage int sys32_ptrace(int request, int pid, int addr, int data)
ret = ptrace_detach(child, data);
break;

case PTRACE_GETEVENTMSG:
ret = put_user(child->ptrace_message,
(unsigned int __user *) (unsigned long) data);
break;

default:
ret = ptrace_request(child, request, addr, data);
break;
Expand Down

0 comments on commit afe43a7

Please sign in to comment.