diff options
author | Coywolf Qi Hunt <coywolf@lovecn.org> | 2005-04-16 15:26:01 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 15:26:01 -0700 |
commit | 6c46ada700568897165409e618ed584683838b49 (patch) | |
tree | 3e58ca796d70c7867bb2acd6fbe239f671decd78 /kernel | |
parent | 2f4cfacecd522849dac254f87273525eeca33d1d (diff) | |
download | op-kernel-dev-6c46ada700568897165409e618ed584683838b49.zip op-kernel-dev-6c46ada700568897165409e618ed584683838b49.tar.gz |
[PATCH] reparent_to_init cleanup
This patch hides reparent_to_init(). reparent_to_init() should only be
called by daemonize().
Signed-off-by: Coywolf Qi Hunt <coywolf@lovecn.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 6dd4ebe..39d35935 100644 --- a/kernel/exit.c +++ b/kernel/exit.c @@ -220,7 +220,7 @@ static inline int has_stopped_jobs(int pgrp) * * NOTE that reparent_to_init() gives the caller full capabilities. */ -void reparent_to_init(void) +static inline void reparent_to_init(void) { write_lock_irq(&tasklist_lock); |