syscall.WaitStatus.Exited (method)

4 uses

	syscall (current package)
		syscall_linux.go#L473: func (w WaitStatus) Exited() bool { return w&mask == exited }
		syscall_linux.go#L484: 	if !w.Exited() {

	os
		exec_posix.go#L93: 	return p.status.Exited()
		exec_posix.go#L115: 	case status.Exited():