summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authordyson <dyson@FreeBSD.org>1997-04-14 01:28:58 +0000
committerdyson <dyson@FreeBSD.org>1997-04-14 01:28:58 +0000
commit63a3ea066f463cdd4c2c442beada8fe619654404 (patch)
tree4d4709fac74a8c71f87bcff6c7637276912df66f /sys
parent902b5e4d165f86b71c1b6932e68996a240376497 (diff)
downloadFreeBSD-src-63a3ea066f463cdd4c2c442beada8fe619654404.zip
FreeBSD-src-63a3ea066f463cdd4c2c442beada8fe619654404.tar.gz
Make a problem that I cannot reproduce go away for now. This commit
is to decrease the inconvienience of other developers until I can really fix the code. Reviewed by: Donald J. Maddox <dmaddox@scsn.net>
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/kern_fork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c
index f6be206..ce3c286 100644
--- a/sys/kern/kern_fork.c
+++ b/sys/kern/kern_fork.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_fork.c 8.6 (Berkeley) 4/8/94
- * $Id: kern_fork.c,v 1.34 1997/04/07 09:38:39 peter Exp $
+ * $Id: kern_fork.c,v 1.35 1997/04/13 01:48:24 dyson Exp $
*/
#include "opt_ktrace.h"
@@ -98,7 +98,7 @@ vfork(p, uap, retval)
struct vfork_args *uap;
int retval[];
{
- return (fork1(p, (RFFDG|RFPROC|RFPPWAIT|RFMEM), retval));
+ return (fork1(p, (RFFDG|RFPROC|RFPPWAIT), retval));
}
/* ARGSUSED */
OpenPOWER on IntegriCloud