diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-30 10:17:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-30 10:17:54 +0000 |
commit | 543abff8d4836ed20ab107e11ce503143d727453 (patch) | |
tree | f70f0646205095d20e6f096cbb406b0e7a0c5efb /sys | |
parent | e8098bbf458987a911595aeb26743be5872aa9bd (diff) |
sync
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 03ea79cef85..8e3c965d726 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.19 1996/05/30 09:30:09 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.20 1996/05/30 10:17:53 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.202 1996/05/18 15:54:59 christos Exp $ */ /*- @@ -1195,16 +1195,6 @@ init386(first_avail) /* call pmap initialization to make new kernel address space */ pmap_bootstrap((vm_offset_t)atdevbase + IOM_SIZE); -#ifdef USER_LDT -#define MAXPROC ((MAXGDTSIZ-NGDT)/2) -#else -#define MAXPROC (MAXGDTSIZ-NGDT) -#endif - if (maxproc > MAXPROC) { - printf("reducing maxproc to %d to fit into gdt\n", MAXPROC); - maxproc = MAXPROC; - } - #ifdef DDB ddb_init(); if (boothowto & RB_KDB) |