| 926 | } |
| 927 | |
| 928 | Connection::EventFd::EventFd() |
| 929 | : fd(eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK)) |
| 930 | { |
| 931 | SDBUS_THROW_ERROR_IF(fd < 0, "Failed to create event object", -errno); |
| 932 | } |
| 933 | |
| 934 | Connection::EventFd::~EventFd() |
| 935 | { |
nothing calls this directly
no outgoing calls
no test coverage detected