func syscall.Wait4

5 uses

	syscall (current package)
		exec_linux.go#L772: 			_, err = Wait4(int(pid), &status, int(flags), nil)
		exec_unix.go#L236: 		_, err1 := Wait4(pid, &wstatus, 0, nil)
		exec_unix.go#L238: 			_, err1 = Wait4(pid, &wstatus, 0, nil)
		syscall_linux.go#L513: func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {

	os
		exec_unix.go#L70: 		pid1, e = syscall.Wait4(p.Pid, &status, 0, &rusage)