artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5969ccd
)
"proc: table is full" actually means thread table is full; ok mpi@ sthen@
author
otto
<otto@openbsd.org>
Thu, 11 Feb 2021 13:40:28 +0000
(13:40 +0000)
committer
otto
<otto@openbsd.org>
Thu, 11 Feb 2021 13:40:28 +0000
(13:40 +0000)
sys/kern/kern_fork.c
patch
|
blob
|
history
diff --git
a/sys/kern/kern_fork.c
b/sys/kern/kern_fork.c
index
f8b8cc6
..
ee11b70
100644
(file)
--- a/
sys/kern/kern_fork.c
+++ b/
sys/kern/kern_fork.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: kern_fork.c,v 1.23
2 2021/02/08 10:51:01 mpi Exp $
*/
+/* $OpenBSD: kern_fork.c,v 1.23
3 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++;