aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-06-04 17:43:34 +1200
committerScott Anderson <ascent12@hotmail.com>2017-06-04 17:43:34 +1200
commit5df56653abdef714d0a92ff88b13b9066f3167fc (patch)
treeafdc7f624abcc12348200626f2c0ec6122a85068 /include
parentde44994dfcd433afbbf6d867a8dc6f4d0979b2f6 (diff)
Changed invalidate interface.
Diffstat (limited to 'include')
-rw-r--r--include/backend/udev.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/backend/udev.h b/include/backend/udev.h
index 0ff35bfa..a2834063 100644
--- a/include/backend/udev.h
+++ b/include/backend/udev.h
@@ -1,18 +1,29 @@
#ifndef _WLR_INTERNAL_UDEV_H
#define _WLR_INTERNAL_UDEV_H
+#include <sys/types.h>
#include <libudev.h>
#include <wlr/session.h>
#include <wayland-server.h>
#include <wlr/backend/udev.h>
+struct wlr_udev_dev {
+ dev_t dev;
+ struct wl_signal invalidate;
+
+ struct wl_list link;
+};
+
struct wlr_udev {
struct udev *udev;
struct udev_monitor *mon;
struct wl_event_source *event;
- struct wl_signal invalidate_drm;
+
+ struct wl_list devices;
};
int wlr_udev_find_gpu(struct wlr_udev *udev, struct wlr_session *session);
+bool wlr_udev_signal_add(struct wlr_udev *udev, dev_t dev, struct wl_listener *listener);
+void wlr_udev_signal_remove(struct wlr_udev *udev, struct wl_listener *listener);
#endif