diff options
author | 2013-04-06 03:44:34 +0000 | |
---|---|---|
committer | 2013-04-06 03:44:34 +0000 | |
commit | 7e4992814da25ff0192f39c21961a23e3099612a (patch) | |
tree | 9ed38bb189e0e6556af1a05ca9675a0eccec9d9a /sys/kern/kern_fork.c | |
parent | kill redundant prototype (diff) | |
download | wireguard-openbsd-7e4992814da25ff0192f39c21961a23e3099612a.tar.xz wireguard-openbsd-7e4992814da25ff0192f39c21961a23e3099612a.zip |
rthreads are always enabled. remove the sysctl.
ok deraadt guenther kettenis matthew
Diffstat (limited to 'sys/kern/kern_fork.c')
-rw-r--r-- | sys/kern/kern_fork.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 02bc078a951..fbe7dcf19d4 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_fork.c,v 1.145 2013/03/14 21:38:22 tedu Exp $ */ +/* $OpenBSD: kern_fork.c,v 1.146 2013/04/06 03:44:34 tedu Exp $ */ /* $NetBSD: kern_fork.c,v 1.29 1996/02/09 18:59:34 christos Exp $ */ /* @@ -243,8 +243,6 @@ fork1(struct proc *curp, int exitsig, int flags, void *stack, pid_t *tidptr, /* sanity check some flag combinations */ if (flags & FORK_THREAD) { - if (!rthreads_enabled) - return (ENOTSUP); if ((flags & (FORK_SIGHAND | FORK_NOZOMBIE)) != (FORK_SIGHAND | FORK_NOZOMBIE)) return (EINVAL); |