home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / UNIX3862.ZIP / U386-06.ZIP / U386-6.TD0 / usr / include / sys / fs / prfcntl.h next >
Encoding:
Text File  |  1988-06-26  |  1.0 KB  |  33 lines

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