Re: [libvirt] [PATCH v3 19/19] build: remove use of usleep gnulib module in favour of g_usleep

2019-10-10 Thread Ján Tomko
On Thu, Oct 10, 2019 at 11:54:13AM +0100, Daniel P. Berrangé wrote: The usleep function was missing on older mingw versions, but we can rely on it existing everywhere these days. It may only support times upto 1 second in duration though, so we'll prefer to use g_usleep instead. The

[libvirt] [PATCH v3 19/19] build: remove use of usleep gnulib module in favour of g_usleep

2019-10-10 Thread Daniel P . Berrangé
The usleep function was missing on older mingw versions, but we can rely on it existing everywhere these days. It may only support times upto 1 second in duration though, so we'll prefer to use g_usleep instead. The commandhelper program is not changed since that can't link to glib. Fortunately