
2011/4/1 Eric Blake <eblake@redhat.com>:
On 03/15/2011 02:29 AM, Matthias Bolte wrote:
Commit 2ed6cc7bec41dd344d41ea1531f6760c93099128 "Expose event loop implementation as a public API" turned a failure to initialize the default event loop into a fatal error in virsh on Windows. Before that commit such a failure was ignored.
Does this patch fix things? If so, we should definitely get it into 0.9.0: https://www.redhat.com/archives/libvir-list/2011-March/msg01553.html
(but be sure to pick up the logic correction before testing): https://www.redhat.com/archives/libvir-list/2011-March/msg01554.html
Yes, at least virSetNonBlock doesn't fail anymore. But now virSetCloseExec is the next thing that fails, because it calls virSetInherit and virSetInherit always returns -1 on Windows. Matthias