diff options
| -rw-r--r-- | config.mk | 2 | ||||
| -rw-r--r-- | main.c | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/config.mk b/config.mk index 4ccabcf..fd9f467 100644 --- a/config.mk +++ b/config.mk @@ -1,2 +1,2 @@ -VERSION = 0.1.3 +VERSION = 0.1.4 CFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=700 diff --git a/main.c b/main.c index 2bedc63..39d8cea 100644 --- a/main.c +++ b/main.c @@ -549,6 +549,12 @@ main(int argc, char **argv) { if (fds[WAYLAND_FD].revents & POLLIN) { wl_display_dispatch(display); } + if (fds[WAYLAND_FD].revents & POLLERR) { + die("Exceptional condition on wayland socket.\n"); + } + if (fds[WAYLAND_FD].revents & POLLHUP) { + die("Wayland socket has been disconnected.\n"); + } if (fds[SIGNAL_FD].revents & POLLIN) { struct signalfd_siginfo si; |
