wlroots/include/backend/session/session.h
Chris P 2aa8cf10d6 backend/session: Add rapid hotplug detection
When applied, this patch adds the option to wait after a DRM device change uevent
for another identical one in order to avoid monitor rearrangement due to a monitor
disconnecting and reconnecting from the implementation of DisplayPort's deep sleep
"feature". This is locked behind a new environment variable due to the 1 second delay
that occurs to wait for a second event, but can be enable by setting
WLR_RAPID_HOTPLUG_PREVENT to 1.
2024-04-03 05:28:30 -04:00

23 lines
753 B
C

#ifndef BACKEND_SESSION_SESSION_H
#define BACKEND_SESSION_SESSION_H
#include <stdbool.h>
struct wl_display;
struct wlr_session;
struct wlr_session *libseat_session_create(struct wl_display *disp);
void libseat_session_destroy(struct wlr_session *base);
int libseat_session_open_device(struct wlr_session *base, const char *path);
void libseat_session_close_device(struct wlr_session *base, int fd);
bool libseat_change_vt(struct wlr_session *base, unsigned vt);
bool check_double_uevent(const char *stored_sysname, const char *stored_devnode,
const char *stored_action, void *data);
void session_init(struct wlr_session *session);
struct wlr_device *session_open_if_kms(struct wlr_session *restrict session,
const char *restrict path);
#endif