aboutsummaryrefslogtreecommitdiff
path: root/include/backend/udev.h
blob: a2834063aa70d6876bfe6930b0e23a49d0d3f00e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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_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