type syscall.WaitStatus

16 uses

	syscall (current package)
		exec_unix.go#L145: 	var wstatus WaitStatus
		syscall_linux.go#L318: type WaitStatus uint32
		syscall_linux.go#L337: func (w WaitStatus) Exited() bool { return w&mask == exited }
		syscall_linux.go#L339: func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
		syscall_linux.go#L341: func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
		syscall_linux.go#L343: func (w WaitStatus) Continued() bool { return w == 0xFFFF }
		syscall_linux.go#L345: func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
		syscall_linux.go#L347: func (w WaitStatus) ExitStatus() int {
		syscall_linux.go#L354: func (w WaitStatus) Signal() Signal {
		syscall_linux.go#L361: func (w WaitStatus) StopSignal() Signal {
		syscall_linux.go#L368: func (w WaitStatus) TrapCause() int {
		syscall_linux.go#L377: func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
		syscall_linux.go#L381: 		*wstatus = WaitStatus(status)

	os
		exec_posix.go#L73: 	status syscall.WaitStatus // System-dependent status info.
		exec_posix.go#L102: 	status := p.Sys().(syscall.WaitStatus)
		exec_unix.go#L37: 		status syscall.WaitStatus