From: otto Date: Thu, 11 Feb 2021 13:40:28 +0000 (+0000) Subject: "proc: table is full" actually means thread table is full; ok mpi@ sthen@ X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7af3a068bd974c6237a45ac348e674660981232b;p=openbsd "proc: table is full" actually means thread table is full; ok mpi@ sthen@ --- diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index f8b8cc67da5..ee11b705d8f 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_fork.c,v 1.232 2021/02/08 10:51:01 mpi Exp $ */ +/* $OpenBSD: kern_fork.c,v 1.233 2021/02/11 13:40:28 otto Exp $ */ /* $NetBSD: kern_fork.c,v 1.29 1996/02/09 18:59:34 christos Exp $ */ /* @@ -299,7 +299,7 @@ fork_check_maxthread(uid_t uid) static struct timeval lasttfm; if (ratecheck(&lasttfm, &fork_tfmrate)) - tablefull("proc"); + tablefull("thread"); return EAGAIN; } nthreads++;