/* * psout: structure output by 'ps -r'. * Most fields are copies of the proc (p_...) or user (u_...) * structures for the given process, see & */ #ifndef makedev #include #endif struct psout { dev_t o_ttyd; /* u_ttyd */ int o_flag; /* p_flag */ short o_pid; /* p_pid */ char o_tty[9]; /* 1st few chars of tty name with 'tty' stripped, if present */ char o_stat; /* p_stat */ short o_uid; /* p_uid */ char o_uname[9]; /* login name of process owner */ short o_ppid; /* p_ppid */ char o_cpu; /* p_cpu */ char o_pri; /* p_pri */ char o_nice; /* p_nice */ short o_addr0; /* p_addr[0] */ short o_size; /* p_size */ caddr_t o_wchan; /* p_wchan */ time_t o_utime; /* u_utime */ time_t o_stime; /* u_stime */ time_t o_cutime; /* u_cutime */ time_t o_cstime; /* u_cstime */ short o_pgrp; /* p_pgrp */ int o_sigs; /* sum of SIGINT & SIGQUIT, if == 2 proc is ignoring both.*/ char o_comm[15]; /* u_comm */ char o_args[64]; /* best guess at args to process */ };