home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume13 / backups / ulist.h < prev   
Encoding:
C/C++ Source or Header  |  1988-01-31  |  419 b   |  13 lines

  1. /* $Header: ulist.h,v 1.2 86/10/14 01:34:47 scooter Exp $ */
  2. struct    ulist {
  3.     int    pid;        /* Process id */
  4.     int    ppid;        /* Parent process id */
  5.     int    uid;        /* Uid of the process */
  6.     int    stat[4];    /* The process state */
  7.     char    cmd[40];    /* The command name */
  8.     int    special_flag;    /* Special startup/shutdown? */
  9.     char    proc_shutdn[80];    /* shutdown command */
  10.     char    proc_restart[80];    /* restart command */
  11.     struct    ulist *next;
  12. };
  13.