| 938 | } |
| 939 | |
| 940 | void Connection::EventFd::notify() // NOLINT(readability-make-member-function-const) |
| 941 | { |
| 942 | assert(fd >= 0); |
| 943 | auto r = eventfd_write(fd, 1); |
| 944 | SDBUS_THROW_ERROR_IF(r < 0, "Failed to notify event descriptor", -errno); |
| 945 | } |
| 946 | |
| 947 | bool Connection::EventFd::clear() // NOLINT(readability-make-member-function-const) |
| 948 | { |
no outgoing calls
no test coverage detected