Don't allow userland to use the RFHIGHPID flag. Its only purpose is to

reserve low pids for system daemons during boot.
This commit is contained in:
Dag-Erling Smørgrav 2001-03-13 02:55:54 +00:00
parent 2de14c39b5
commit df472ea4f3

View file

@ -220,7 +220,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
#define RFKERNELONLY (RFSTOPPED|RFHIGHPID)
#endif /* !_POSIX_SOURCE */