From 8ee43cee945f59f6f3cb06fe2e2d707372575ff2 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Wed, 27 Oct 2010 23:17:47 +0200 Subject: [PATCH] log open/close of vdagent virtio channel --- vdagentd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vdagentd.c b/vdagentd.c index 894294e..5bb364e 100644 --- a/vdagentd.c +++ b/vdagentd.c @@ -367,6 +367,7 @@ static void check_xorg_resolution(void) { uinput_height = agent_data->height; } if (!virtio_port) { + fprintf(stderr, "opening vdagent virtio channel\n"); virtio_port = vdagent_virtio_port_create(portdev, virtio_port_read_complete, NULL); @@ -381,6 +382,7 @@ static void check_xorg_resolution(void) { uinput_width = uinput_height = 0; } vdagent_virtio_port_destroy(&virtio_port); + fprintf(stderr, "closed vdagent virtio channel\n"); } } -- 2.11.4.GIT