Lines Matching defs:ProcessState
109 type ProcessState struct { struct
110 pid int // The process's id.
111 status *syscall.Waitmsg // System-dependent status info.
115 func (p *ProcessState) Pid() int {
119 func (p *ProcessState) exited() bool {
123 func (p *ProcessState) success() bool {
127 func (p *ProcessState) sys() any {
131 func (p *ProcessState) sysUsage() any {
135 func (p *ProcessState) userTime() time.Duration {
139 func (p *ProcessState) systemTime() time.Duration {
143 func (p *ProcessState) String() string {
152 func (p *ProcessState) ExitCode() int {