mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-26 06:35:58 +01:00
Terminate local display on remote Wayland display error
This commit is contained in:
parent
ac78c6642a
commit
73c48f2f35
1 changed files with 6 additions and 1 deletions
|
@ -12,10 +12,15 @@
|
||||||
#include "backend/wayland.h"
|
#include "backend/wayland.h"
|
||||||
#include "xdg-shell-unstable-v6-client-protocol.h"
|
#include "xdg-shell-unstable-v6-client-protocol.h"
|
||||||
|
|
||||||
|
|
||||||
static int dispatch_events(int fd, uint32_t mask, void *data) {
|
static int dispatch_events(int fd, uint32_t mask, void *data) {
|
||||||
struct wlr_wl_backend *backend = data;
|
struct wlr_wl_backend *backend = data;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
|
||||||
|
if ((mask & WL_EVENT_HANGUP) || (mask & WL_EVENT_ERROR)) {
|
||||||
|
wl_display_terminate(backend->local_display);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (mask & WL_EVENT_READABLE) {
|
if (mask & WL_EVENT_READABLE) {
|
||||||
count = wl_display_dispatch(backend->remote_display);
|
count = wl_display_dispatch(backend->remote_display);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue