summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-02-11 01:23:37 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-02-11 01:23:37 +0000
commitd379a26a69c756278485b55025ec9af01712ac58 (patch)
tree42b4c388b08b7bbb02830ab608b9646f2f8e3bd3 /sys
parent24a6bba0e7c005cc606ef3d63c15663417ecde4c (diff)
1<<39 is horrible
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sparc64/include/vmparam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/include/vmparam.h b/sys/arch/sparc64/include/vmparam.h
index 8f3dd13b3ab..c790d9b071c 100644
--- a/sys/arch/sparc64/include/vmparam.h
+++ b/sys/arch/sparc64/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.5 2001/12/05 16:25:44 art Exp $ */
+/* $OpenBSD: vmparam.h,v 1.6 2002/02/11 01:23:36 deraadt Exp $ */
/* $NetBSD: vmparam.h,v 1.18 2001/05/01 02:19:19 thorpej Exp $ */
/*
@@ -85,7 +85,7 @@
#define DFLDSIZ (128L*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (1L<<39) /* max data size */
+#define MAXDSIZ (512L*1024*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (1024*1024) /* initial stack size limit */