summaryrefslogtreecommitdiffstats
path: root/kernel/fork.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-05-12 23:48:34 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-05-12 23:48:34 +0000
commit7fd36ebeeec9244a7431bb010e6e3c5e4848a0d5 (patch)
tree5fb03a9aafdd1cec5f4f6ff7f1873174cb89b66c /kernel/fork.c
parentba2dacab305c598cd4c34a604f8e276bf5bab5ff (diff)
Merge with Linux 2.3.99-pre8. Linus must hate me, too man patches ;-)
Diffstat (limited to 'kernel/fork.c')
-rw-r--r--kernel/fork.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index 424b2ed55..aa350672a 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -25,12 +25,12 @@
#include <asm/mmu_context.h>
/* The idle threads do not count.. */
-int nr_threads=0;
-int nr_running=0;
+int nr_threads;
+int nr_running;
int max_threads;
-unsigned long total_forks = 0; /* Handle normal Linux uptimes. */
-int last_pid=0;
+unsigned long total_forks; /* Handle normal Linux uptimes. */
+int last_pid;
/* SLAB cache for mm_struct's. */
kmem_cache_t *mm_cachep;