compositor-drm: log enter/leave VT
authorPekka Paalanen <ppaalanen@gmail.com>
Fri, 3 Aug 2012 11:39:10 +0000 (14:39 +0300)
committerKristian Høgsberg <krh@bitplanet.net>
Fri, 3 Aug 2012 17:32:10 +0000 (13:32 -0400)
All input devices are re-added during enter VT, so these messages in the
log will clarify what happened with input.

Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
src/compositor-drm.c

index c12bc01..eab5f5c 100644 (file)
@@ -2100,6 +2100,7 @@ vt_func(struct weston_compositor *compositor, int event)
 
        switch (event) {
        case TTY_ENTER_VT:
+               weston_log("entering VT\n");
                compositor->focus = 1;
                if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 1)) {
                        weston_log("failed to set master: %m\n");
@@ -2114,6 +2115,7 @@ vt_func(struct weston_compositor *compositor, int event)
                }
                break;
        case TTY_LEAVE_VT:
+               weston_log("leaving VT\n");
                wl_list_for_each(seat, &compositor->seat_list, link) {
                        evdev_disable_udev_monitor(seat);
                        evdev_remove_devices(seat);