Searched refs:ptrace_entry (Results 1 - 5 of 5) sorted by relevance

/linux-master/include/linux/
H A Dptrace.h202 INIT_LIST_HEAD(&child->ptrace_entry);
231 BUG_ON(!list_empty(&task->ptrace_entry));
H A Dsched.h1007 * 'ptrace_entry' is this task's link on the p->parent->ptraced list.
1010 struct list_head ptrace_entry; member in struct:task_struct
/linux-master/init/
H A Dinit_task.c102 .ptrace_entry = LIST_HEAD_INIT(init_task.ptrace_entry),
/linux-master/kernel/
H A Dptrace.c72 BUG_ON(!list_empty(&child->ptrace_entry));
73 list_add(&child->ptrace_entry, &new_parent->ptraced);
128 list_del_init(&child->ptrace_entry);
598 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
603 list_add(&p->ptrace_entry, dead);
H A Dexit.c605 list_for_each_entry_safe(p, n, dead, ptrace_entry) {
606 list_del_init(&p->ptrace_entry);
675 list_add(&p->ptrace_entry, dead);
764 list_add(&tsk->ptrace_entry, &dead);
772 list_for_each_entry_safe(p, n, &dead, ptrace_entry) {
773 list_del_init(&p->ptrace_entry);
1492 list_for_each_entry(p, &tsk->ptraced, ptrace_entry) {

Completed in 160 milliseconds