diff options
author | 2008-10-06 23:09:37 +0000 | |
---|---|---|
committer | 2008-10-06 23:09:37 +0000 | |
commit | f1db0826d8c661815381c4b211f8117be5dca485 (patch) | |
tree | 9c5c3f0deafe3bf0a4833410acc9fa269a214ccb | |
parent | regen (diff) | |
download | wireguard-openbsd-f1db0826d8c661815381c4b211f8117be5dca485.tar.xz wireguard-openbsd-f1db0826d8c661815381c4b211f8117be5dca485.zip |
more readable virtual memory size values.
ok deraadt@
-rw-r--r-- | sys/arch/alpha/include/vmparam.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/alpha/include/vmparam.h b/sys/arch/alpha/include/vmparam.h index 2af8bb48f59..3181a897290 100644 --- a/sys/arch/alpha/include/vmparam.h +++ b/sys/arch/alpha/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.17 2008/07/25 21:24:49 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.18 2008/10/06 23:09:37 brad Exp $ */ /* $NetBSD: vmparam.h,v 1.18 2000/05/22 17:13:54 thorpej Exp $ */ /* @@ -64,19 +64,19 @@ * Virtual memory related constants, all in bytes */ #ifndef MAXTSIZ -#define MAXTSIZ (1<<30) /* max text size (1G) */ +#define MAXTSIZ (1*1024*1024*1024) /* max text size */ #endif #ifndef DFLDSIZ -#define DFLDSIZ (1<<27) /* initial data size (128M) */ +#define DFLDSIZ (128*1024*1024) /* initial data size */ #endif #ifndef MAXDSIZ -#define MAXDSIZ (1<<30) /* max data size (1G) */ +#define MAXDSIZ (1*1024*1024*1024) /* max data size */ #endif #ifndef DFLSSIZ -#define DFLSSIZ (1<<21) /* initial stack size (2M) */ +#define DFLSSIZ (2*1024*1024) /* initial stack size */ #endif #ifndef MAXSSIZ -#define MAXSSIZ (1<<25) /* max stack size (32M) */ +#define MAXSSIZ (32*1024*1024) /* max stack size */ #endif #define STACKGAP_RANDOM 256*1024 |