home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1984, 1986, 1987, 1988 AT&T */
- /* All Rights Reserved */
-
- /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
- /* The copyright notice above does not evidence any */
- /* actual or intended publication of such source code. */
-
-
- /* prfcntl.h - fcntls for /proc */
-
- #ident "@(#)head.sys:fs/prfcntl.h 1.3"
-
- #define PFC ('p'<<8)
-
- #define PFCGETPR (PFC|1) /* read struct proc */
- #define PFCOPENT (PFC|2) /* open text file for reading */
- #define PFCEXCLU (PFC|3) /* mark text for exclusive use */
-
- #define PFCSTOP (PFC|4) /* send STOP signal and... */
- #define PFCWSTOP (PFC|5) /* wait for process to STOP */
- #define PFCRUN (PFC|6) /* make process runnable */
-
- #define PFCSMASK (PFC|7) /* set signal trace bit mask */
- #define PFCCSIG (PFC|8) /* clear current signal */
- #define PFCKILL (PFC|9) /* send signal */
-
- #define PFCSEXEC (PFC|10) /* stop on exec */
- #define PFCREXEC (PFC|11) /* run on exec */
-
- #define PFCNICE (PFC|12) /* set nice priority */
-
- #define PFCGMASK (PFC|13) /* get signal trace bit mask */
-