pgo: add fdm_del_no_close()

This commit is contained in:
Daniel Eklöf 2025-05-08 10:35:37 +02:00
parent f36610f154
commit 79182ac287
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -47,6 +47,12 @@ fdm_del(struct fdm *fdm, int fd)
return true;
}
bool
fdm_del_no_close(struct fdm *fdm, int fd)
{
return true;
}
bool
fdm_event_add(struct fdm *fdm, int fd, int events)
{