Lines Matching defs:ProcessState
81 type ProcessState struct { struct
82 pid int // The process's id.
83 status syscall.WaitStatus // System-dependent status info.
84 rusage *syscall.Rusage
88 func (p *ProcessState) Pid() int {
92 func (p *ProcessState) exited() bool {
96 func (p *ProcessState) success() bool {
100 func (p *ProcessState) sys() any {
104 func (p *ProcessState) sysUsage() any {
108 func (p *ProcessState) String() string {
140 func (p *ProcessState) ExitCode() int {