Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 83375
b: refs/heads/master
c: d9ae90a
h: refs/heads/master
i:
  83373: 4f8251f
  83371: a1bead9
  83367: 5d66adb
  83359: 24887b0
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Feb 6, 2008
1 parent 19f9185 commit a7bf04c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 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: 06b8e878a9bc9301201cffe186eba99c4185f20a
refs/heads/master: d9ae90ac4bdce769ddb27c2e24c3351a30c3daf8
2 changes: 1 addition & 1 deletion trunk/kernel/fork.c
Original file line number Diff line number Diff line change
Expand Up @@ -1510,7 +1510,7 @@ long do_fork(unsigned long clone_flags,
if (!(clone_flags & CLONE_STOPPED))
wake_up_new_task(p, clone_flags);
else
p->state = TASK_STOPPED;
__set_task_state(p, TASK_STOPPED);

if (unlikely (trace)) {
current->ptrace_message = nr;
Expand Down
10 changes: 4 additions & 6 deletions trunk/kernel/ptrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void ptrace_untrace(struct task_struct *child)
spin_lock(&child->sighand->siglock);
if (task_is_traced(child)) {
if (child->signal->flags & SIGNAL_STOP_STOPPED) {
child->state = TASK_STOPPED;
__set_task_state(child, TASK_STOPPED);
} else {
signal_wake_up(child, 1);
}
Expand Down Expand Up @@ -103,18 +103,16 @@ int ptrace_check_attach(struct task_struct *child, int kill)
&& child->signal != NULL) {
ret = 0;
spin_lock_irq(&child->sighand->siglock);
if (task_is_stopped(child)) {
if (task_is_stopped(child))
child->state = TASK_TRACED;
} else if (!task_is_traced(child) && !kill) {
else if (!task_is_traced(child) && !kill)
ret = -ESRCH;
}
spin_unlock_irq(&child->sighand->siglock);
}
read_unlock(&tasklist_lock);

if (!ret && !kill) {
if (!ret && !kill)
wait_task_inactive(child);
}

/* All systems go.. */
return ret;
Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ static void ptrace_stop(int exit_code, int nostop_code, siginfo_t *info)
current->exit_code = exit_code;

/* Let the debugger run. */
set_current_state(TASK_TRACED);
__set_current_state(TASK_TRACED);
spin_unlock_irq(&current->sighand->siglock);
try_to_freeze();
read_lock(&tasklist_lock);
Expand Down

0 comments on commit a7bf04c

Please sign in to comment.