exit.c: unexport __set_special_pids()
Move __set_special_pids() from exit.c to sys.c close to its single caller and make it static. And rename it to set_special_pids(), another helper with this name has gone away. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3f41854838
commit
81dabb4641
3 changed files with 12 additions and 14 deletions
|
@ -312,17 +312,6 @@ kill_orphaned_pgrp(struct task_struct *tsk, struct task_struct *parent)
|
|||
}
|
||||
}
|
||||
|
||||
void __set_special_pids(struct pid *pid)
|
||||
{
|
||||
struct task_struct *curr = current->group_leader;
|
||||
|
||||
if (task_session(curr) != pid)
|
||||
change_pid(curr, PIDTYPE_SID, pid);
|
||||
|
||||
if (task_pgrp(curr) != pid)
|
||||
change_pid(curr, PIDTYPE_PGID, pid);
|
||||
}
|
||||
|
||||
/*
|
||||
* Let kernel threads use this to say that they allow a certain signal.
|
||||
* Must not be used if kthread was cloned with CLONE_SIGHAND.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue