summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>2001-04-07 22:02:21 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>2001-04-07 22:02:21 +0000
commit2d845132fdf2e403e2cb785c852987f2efa703dc (patch)
treee80844fa8fa7127606f5ad321673398b1be81a59
parent00797dd1c3e78a87428ef3918ebf27c8f9541bbb (diff)
Stack gap no longer fits common structures (like struct statfs), causing
many emulated system calls (SysV, Linux, others) to fail. Bump from 400 up to 512 bytes; ok aaron@
-rw-r--r--sys/sys/exec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/exec.h b/sys/sys/exec.h
index 3d8e1e3c55b..2a8a0fc68f8 100644
--- a/sys/sys/exec.h
+++ b/sys/sys/exec.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec.h,v 1.10 2001/04/01 21:30:32 art Exp $ */
+/* $OpenBSD: exec.h,v 1.11 2001/04/07 22:02:20 tholo Exp $ */
/* $NetBSD: exec.h,v 1.59 1996/02/09 18:25:09 christos Exp $ */
/*-
@@ -79,7 +79,7 @@ struct ps_strings {
defined(COMPAT_IBCS2) || defined(COMPAT_SVR4) || defined(COMPAT_OSF1) || \
defined(COMPAT_LINUX) || defined(COMPAT_FREEBSD) || \
defined(COMPAT_HPUX) || defined(COMPAT_NETBSD)
-#define STACKGAPLEN 400 /* plenty enough for now */
+#define STACKGAPLEN 512 /* plenty enough for now */
#else
#define STACKGAPLEN 0
#endif