diff options
author | 2012-04-12 15:42:52 +0000 | |
---|---|---|
committer | 2012-04-12 15:42:52 +0000 | |
commit | 51146b7521ba981b7c25a5f86eb89d56c31f2851 (patch) | |
tree | 0f90689fd01e4431a98877f2c98be6a314a9eba1 /sys/compat/linux/linux_sched.c | |
parent | sync (diff) | |
download | wireguard-openbsd-51146b7521ba981b7c25a5f86eb89d56c31f2851.tar.xz wireguard-openbsd-51146b7521ba981b7c25a5f86eb89d56c31f2851.zip |
rfork cleanup
Diffstat (limited to 'sys/compat/linux/linux_sched.c')
-rw-r--r-- | sys/compat/linux/linux_sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_sched.c b/sys/compat/linux/linux_sched.c index 14b00c23bf8..d0a3ea5c88a 100644 --- a/sys/compat/linux/linux_sched.c +++ b/sys/compat/linux/linux_sched.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_sched.c,v 1.11 2011/08/03 16:11:31 guenther Exp $ */ +/* $OpenBSD: linux_sched.c,v 1.12 2012/04/12 15:42:52 guenther Exp $ */ /* $NetBSD: linux_sched.c,v 1.6 2000/05/28 05:49:05 thorpej Exp $ */ /*- @@ -61,7 +61,7 @@ linux_sys_clone(struct proc *p, void *v, register_t *retval) struct linux_sys_clone_args *uap = v; struct linux_emuldata *emul = p->p_emuldata; int cflags = SCARG(uap, flags); - int flags = FORK_RFORK, sig; + int flags = FORK_TFORK, sig; int error = 0; /* |