aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/exit.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2005-05-01 11:59:29 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-01 11:59:29 -0400
commit408b664a7d394a5e4315fbd14aca49b042cb2b08 (patch)
treebd3ebe72229227962d157e46e61ed65b78d6e28b /kernel/exit.c
parentc31403a1f5a761599df38bcc2d6ba94f24320c33 (diff)
[PATCH] make lots of things static
Another large rollup of various patches from Adrian which make things static where they were needlessly exported. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/exit.c')
-rw-r--r--kernel/exit.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/exit.c b/kernel/exit.c
index 419d9d3c4c48..7be283d98983 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -39,6 +39,8 @@ extern struct task_struct *child_reaper;
39 39
40int getrusage(struct task_struct *, int, struct rusage __user *); 40int getrusage(struct task_struct *, int, struct rusage __user *);
41 41
42static void exit_mm(struct task_struct * tsk);
43
42static void __unhash_process(struct task_struct *p) 44static void __unhash_process(struct task_struct *p)
43{ 45{
44 nr_threads--; 46 nr_threads--;
@@ -474,7 +476,7 @@ EXPORT_SYMBOL_GPL(exit_fs);
474 * Turn us into a lazy TLB process if we 476 * Turn us into a lazy TLB process if we
475 * aren't already.. 477 * aren't already..
476 */ 478 */
477void exit_mm(struct task_struct * tsk) 479static void exit_mm(struct task_struct * tsk)
478{ 480{
479 struct mm_struct *mm = tsk->mm; 481 struct mm_struct *mm = tsk->mm;
480 482