Re: [Qemu-devel] [PATCH resent] linux-user: in poll(), if nfds is 0, pfd can be NULL

2015-10-06 Thread Riku Voipio
On tiistaina 6. lokakuuta 2015 2.20.48 EEST, Laurent Vivier wrote: This problem appears with yum in Fedora 20 / PPC64 container. test case: #include #include int main(void) { int ret; ret = poll(NULL, 0, 1000); printf("%d\n", ret); } target test

[Qemu-devel] [PATCH resent] linux-user: in poll(), if nfds is 0, pfd can be NULL

2015-10-05 Thread Laurent Vivier
This problem appears with yum in Fedora 20 / PPC64 container. test case: #include #include int main(void) { int ret; ret = poll(NULL, 0, 1000); printf("%d\n", ret); } target test environment: Fedora 20 / PPC64 host test environment: Ubuntu 14.0.2 /