syscall.WaitStatus.Exited (method)

6 uses

	syscall (current package)
		syscall_bsd.go#L106: func (w WaitStatus) Exited() bool { return w&mask == exited }

	os
		exec_posix.go#L82: 	return p.status.Exited()
		exec_posix.go#L104: 	case status.Exited():

	src.elv.sh/pkg/eval
		exception.go#L274: 	if ws.Exited() && ws.ExitStatus() == 0 {
		exception.go#L284: 	case ws.Exited():
		exception.go#L308: 	case ws.Exited():