diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-05-21 16:31:32 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-05-21 16:33:38 +0300 |
commit | 34e9716fb28c4128d7cfee24a910a47abeb2aa98 (patch) | |
tree | 3a8d076f329649e09a2c2e52be3893e4ee511696 /events.h | |
parent | d93ee5f7009bbd81631bd7f8493486051a732a23 (diff) |
events: Add a cleanup function
Add events to the watch list allocates memory. Add a cleanup function to
free all memory at cleanup time without having to remove all events
explicitly one by one.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'events.h')
-rw-r--r-- | events.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -44,5 +44,6 @@ bool events_loop(struct events *events); void events_stop(struct events *events); void events_init(struct events *events); +void events_cleanup(struct events *events); #endif |