Re: [Qemu-devel] [PATCHv2] aio / timers: use g_usleep() not sleep()

2013-09-03 Thread Stefan Hajnoczi
On Thu, Aug 29, 2013 at 11:32:14PM +0100, Alex Bligh wrote: sleep() apparently doesn't exist under mingw. Use g_usleep for portability. Signed-off-by: Alex Bligh a...@alex.org.uk --- tests/test-aio.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Thanks, applied to my

[Qemu-devel] [PATCHv2] aio / timers: use g_usleep() not sleep()

2013-08-29 Thread Alex Bligh
sleep() apparently doesn't exist under mingw. Use g_usleep for portability. Signed-off-by: Alex Bligh a...@alex.org.uk --- tests/test-aio.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test-aio.c b/tests/test-aio.c index 4215701..c4fe0fc 100644 ---

Re: [Qemu-devel] [PATCHv2] aio / timers: use g_usleep() not sleep()

2013-08-29 Thread Stefan Weil
Am 30.08.2013 00:32, schrieb Alex Bligh: sleep() apparently doesn't exist under mingw. Use g_usleep for portability. Signed-off-by: Alex Bligh a...@alex.org.uk --- tests/test-aio.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test-aio.c