diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-19 17:18:14 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-19 17:18:14 +0000 |
commit | 86e2c8d6219d848ab81a040c04e785018b3914d8 (patch) | |
tree | 96d685cf516163058f178bbd1422fe9049a41adf | |
parent | 3f3599406704f2824145447bbd9661a7a5f38d13 (diff) |
``3 pages of u-area ought to be enough for everybody''
(deraadt wanted 2, I wanted 4, actually...)
-rw-r--r-- | sys/arch/mvme88k/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/param.h b/sys/arch/mvme88k/include/param.h index 35f00aed627..a510c4a0695 100644 --- a/sys/arch/mvme88k/include/param.h +++ b/sys/arch/mvme88k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.33 2004/01/13 23:24:59 miod Exp $ */ +/* $OpenBSD: param.h,v 1.34 2004/01/19 17:18:13 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1988 University of Utah. @@ -89,7 +89,7 @@ #define SSIZE 1 /* initial stack size/NBPG */ #define SINCR 1 /* increment of stack/NBPG */ -#define UPAGES 8 /* pages of u-area */ +#define UPAGES 3 /* pages of u-area */ #define USPACE (UPAGES * NBPG) #define UADDR 0xeee00000 /* address of u */ |