From d93ee5f7009bbd81631bd7f8493486051a732a23 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 21 May 2018 16:29:33 +0300 Subject: events: Extend the events_unwatch_fd() API with an event type If a single file descriptor is being watch for multiple event types, it will be present in multiple entries in the watch list. The events_unwatch_fd() function will remove the first entry regardless of its type, not allowing removal of a particular event type. Fix this by extending the events_unwatch_fd() API to take an event type, and remove the corresponding entry. Signed-off-by: Laurent Pinchart --- events.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'events.h') diff --git a/events.h b/events.h index b80cd75..ef8dccc 100644 --- a/events.h +++ b/events.h @@ -38,7 +38,7 @@ enum event_type { void events_watch_fd(struct events *events, int fd, enum event_type type, void(*callback)(void *), void *priv); -void events_unwatch_fd(struct events *events, int fd); +void events_unwatch_fd(struct events *events, int fd, enum event_type type); bool events_loop(struct events *events); void events_stop(struct events *events); -- cgit v1.2.3