(pidFD *os.File)
| 90 | } |
| 91 | |
| 92 | func pidfdWaitid(pidFD *os.File) error { |
| 93 | return sys.IgnoringEINTR(func() error { |
| 94 | return unix.Waitid(unix.P_PIDFD, int(pidFD.Fd()), nil, unix.WEXITED, nil) |
| 95 | }) |
| 96 | } |
no test coverage detected
searching dependent graphs…