Lines Matching defs:private
82 typedef struct private { struct
83 struct ps_lwphandle *Lwp; /* non-NULL for each lwp controller */
84 const lwpstatus_t *lwpstat; /* lwp status information while stopped */
85 int length; /* length of printf() output so far */
86 pid_t child; /* pid of fork()ed child process */
87 char pname[32]; /* formatted pid/tid of controlled lwp */
88 struct { /* remembered parameters for make_pname() */
94 } pparam;
95 int Errno; /* errno for controlled process's syscall */
96 int ErrPriv; /* privilege missing for last syscall */
97 long Rval1; /* rval1 (%r0) for syscall */
98 long Rval2; /* rval2 (%r1) for syscall */
99 timestruc_t syslast; /* most recent value of stime */
100 timestruc_t usrlast; /* most recent value of utime */
124 } private_t; argument