qga: set file descriptor in qmp_guest_file_open non-blocking on Win32
commitfb68777312887000cd0367d72621fdd67cc4a0a0
authorOlga Krishtal <okrishtal@parallels.com>
Wed, 28 Oct 2015 15:13:57 +0000 (28 18:13 +0300)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Wed, 4 Nov 2015 13:37:56 +0000 (4 07:37 -0600)
tree30056d530f71e0defc258fae542b6e6961ac2d02
parentc87d0964ef7534d50a4c729a6ae20045b3a0cd34
qga: set file descriptor in qmp_guest_file_open non-blocking on Win32

Set fd non-blocking to avoid common use cases (like reading from a
named pipe) from hanging the agent. This was missed in the original
code.

The patch introduces qemu_set_handle_nonoblocking, the local analog
of qemu_set_nonblock for HANDLES.
The usage of handles in qemu_set_non/block is impossible, because for
win32 there is a difference between file discriptors and file handles,
and all file ops are made via Win32 api.

Signed-off-by: Olga Krishtal <okrishtal@parallels.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
CC: Michael Roth <mdroth@linux.vnet.ibm.com>
CC: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
qga/commands-win32.c