| 188 | } |
| 189 | |
| 190 | void IPCClientPrivate::wakeup() |
| 191 | { |
| 192 | const uint64_t one = 1; |
| 193 | USBGUARD_SYSCALL_THROW("IPC client", |
| 194 | write(_wakeup_fd, &one, sizeof one) != sizeof one); |
| 195 | } |
| 196 | |
| 197 | void IPCClientPrivate::stop(bool do_wait) |
| 198 | { |
nothing calls this directly
no outgoing calls
no test coverage detected