| 161 | } |
| 162 | |
| 163 | uint64_t PidFdWaiter::PackEventData(EpollEventType type, PID pid) |
| 164 | { |
| 165 | return ((uint64_t)type << 32) | (uint64_t)pid; |
| 166 | } |
| 167 | |
| 168 | int PidFdWaiter::OpenPidFd(PID pid, unsigned int flags) |
| 169 | { |
nothing calls this directly
no outgoing calls
no test coverage detected