diff options
Diffstat (limited to 'kernel/exit.c')
| -rw-r--r-- | kernel/exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 407b80aaefda..f132349c0325 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
| @@ -229,12 +229,12 @@ static int will_become_orphaned_pgrp(struct pid *pgrp, struct task_struct *ignor | |||
| 229 | return ret; /* (sighing) "Often!" */ | 229 | return ret; /* (sighing) "Often!" */ |
| 230 | } | 230 | } |
| 231 | 231 | ||
| 232 | int is_orphaned_pgrp(int pgrp) | 232 | int is_current_pgrp_orphaned(void) |
| 233 | { | 233 | { |
| 234 | int retval; | 234 | int retval; |
| 235 | 235 | ||
| 236 | read_lock(&tasklist_lock); | 236 | read_lock(&tasklist_lock); |
| 237 | retval = will_become_orphaned_pgrp(find_pid(pgrp), NULL); | 237 | retval = will_become_orphaned_pgrp(task_pgrp(current), NULL); |
| 238 | read_unlock(&tasklist_lock); | 238 | read_unlock(&tasklist_lock); |
| 239 | 239 | ||
| 240 | return retval; | 240 | return retval; |
