diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-23 14:01:04 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-23 14:01:04 +0000 |
commit | 6c421d222bf519d740b81f7a821e75384d78c1e2 (patch) | |
tree | 8acedad6e58d974e982f26235b39b2de858c6869 /sys/arch/i386 | |
parent | 0b5662a7add137e9776223f203566642959874b5 (diff) |
We can now move timeout_init into main().
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index f8ae20f5592..17545da54f0 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.173 2001/08/23 12:02:04 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.174 2001/08/23 14:01:03 art Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -402,11 +402,6 @@ cpu_startup() mb_map = uvm_km_suballoc(kernel_map, (vm_offset_t *)&mbutl, &maxaddr, VM_MBUF_SIZE, VM_MAP_INTRSAFE, FALSE, NULL); - /* - * Initialize timeouts - */ - timeout_init(); - printf("avail mem = %lu (%uK)\n", ptoa(uvmexp.free), ptoa(uvmexp.free)/1024); printf("using %d buffers containing %u bytes (%uK) of memory\n", |