patch-2.4.10 linux/arch/arm/kernel/ptrace.c
Next file: linux/arch/arm/kernel/traps.c
Previous file: linux/arch/arm/kernel/process.c
Back to the patch index
Back to the overall index
- Lines: 39
- Date:
Tue Sep 18 17:03:51 2001
- Orig file:
v2.4.9/linux/arch/arm/kernel/ptrace.c
- Orig date:
Mon Aug 27 12:41:38 2001
diff -u --recursive --new-file v2.4.9/linux/arch/arm/kernel/ptrace.c linux/arch/arm/kernel/ptrace.c
@@ -386,6 +386,16 @@
}
}
+/*
+ * Called by kernel/ptrace.c when detaching..
+ *
+ * Make sure the single step bit is not set.
+ */
+void ptrace_disable(struct task_struct *child)
+{
+ __ptrace_cancel_bpt(child);
+}
+
static int do_ptrace(int request, struct task_struct *child, long addr, long data)
{
unsigned long tmp;
@@ -491,20 +501,7 @@
* detach a process that was attached.
*/
case PTRACE_DETACH:
- ret = -EIO;
- if ((unsigned long) data > _NSIG)
- break;
- child->ptrace &= ~(PT_PTRACED|PT_TRACESYS);
- child->exit_code = data;
- write_lock_irq(&tasklist_lock);
- REMOVE_LINKS(child);
- child->p_pptr = child->p_opptr;
- SET_LINKS(child);
- write_unlock_irq(&tasklist_lock);
- /* make sure single-step breakpoint is gone. */
- __ptrace_cancel_bpt(child);
- wake_up_process (child);
- ret = 0;
+ ret = ptrace_detach(child, data);
break;
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)