os.Process.Pid (field)

11 uses

	os (current package)
		exec.go#L59: 	Pid int
		exec.go#L107: 		Pid:  pid,
		exec.go#L116: 		Pid:    pid,
		exec.go#L127: 		Pid:  pid,
		exec_unix.go#L68: 		return syscall.Wait4(p.Pid, &status, 0, &rusage)
		exec_unix.go#L101: 	if p.Pid == pidReleased {
		exec_unix.go#L104: 	if p.Pid == pidUnset {
		exec_unix.go#L118: 	return convertESRCH(syscall.Kill(p.Pid, s))
		exec_unix.go#L132: 	p.Pid = pidReleased
		wait_waitid.go#L24: 		return unix.Waitid(unix.P_PID, p.Pid, &info, syscall.WEXITED|syscall.WNOWAIT, nil)

	golang.org/x/tools/internal/gocommand
		invoke.go#L474: 	log.Fatalf("detected hanging go command (golang/go#54461); waited %s\n\tcommand:%s\n\tpid:%d", time.Since(start), cmd, cmd.Process.Pid)