Make RFPPWAIT a kernel-only flag. Programs desiring this feature should

use vfork() rather than manually invoking rfork().
This commit is contained in:
jhb 2001-12-19 00:55:13 +00:00
parent b6f2ecc1bc
commit 1f321859bd

View File

@ -227,7 +227,7 @@
#define RFSTOPPED (1<<17) /* leave child in a stopped state */
#define RFHIGHPID (1<<18) /* use a pid higher then 10 (idleproc) */
#define RFPPWAIT (1<<31) /* parent sleeps until child exits (vfork) */
#define RFKERNELONLY (RFSTOPPED|RFHIGHPID)
#define RFKERNELONLY (RFSTOPPED|RFHIGHPID|RFPPWAIT)
#endif /* !_POSIX_SOURCE */