diff options
| author | christos <christos@NetBSD.org> | 2004-05-01 22:42:51 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2004-05-01 22:42:51 +0000 |
| commit | 7689222dbe604321cd1f4d63cfce2f23caaa4e85 (patch) | |
| tree | 92032d373ee3cb261197920eb6e5f07183f8da0a /sys | |
| parent | 5f4709f782aafceaa671e2871834fc7bf92fca0d (diff) | |
make STACKGAPLEN 4k, since struct statvfs is more than 2k.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/sys/exec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/exec.h b/sys/sys/exec.h index 3277062866f..fd98e73240f 100644 --- a/sys/sys/exec.h +++ b/sys/sys/exec.h @@ -1,4 +1,4 @@ -/* $NetBSD: exec.h,v 1.104 2004/02/13 11:36:23 wiz Exp $ */ +/* $NetBSD: exec.h,v 1.105 2004/05/01 22:42:51 christos Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -116,7 +116,7 @@ struct ps_strings { * Below the ps_strings and sigtramp, we may require a gap on the stack * (used to copyin/copyout various emulation data structures). */ -#define STACKGAPLEN 512 /* plenty enough for now */ +#define STACKGAPLEN 4096 /* plenty enough for now */ /* * the following structures allow execve() to put together processes |
