diff options
Diffstat (limited to 'sys/kern/kern_fork.c')
-rw-r--r-- | sys/kern/kern_fork.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 11a94d9..9a74d25 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -265,6 +265,11 @@ fork1(td, flags, pages, procp) return (0); } + /* + * Note 1:1 allows for forking with one thread coming out on the + * other side with the expectation that the process is about to + * exec. + */ if (p1->p_flag & P_THREADED) { /* * Idle the other threads for a second. |