Re: [Qemu-devel] CONFIG_EPOLL vs CONFIG_EPOLL_CREATE1

2016-02-23 Thread Matthew Fortune
Fam Zheng writes: > On Mon, 02/22 17:21, Matthew Fortune wrote: > > Hi, > > > > I've recently tried building qemu with a sysroot that has support > > for epoll_create but not epoll_create1. > > > > New code introduced in the following commit uses epoll_create1 but > > guards it using CONFIG_EPOLL

Re: [Qemu-devel] CONFIG_EPOLL vs CONFIG_EPOLL_CREATE1

2016-02-22 Thread Fam Zheng
On Mon, 02/22 17:21, Matthew Fortune wrote: > Hi, > > I've recently tried building qemu with a sysroot that has support > for epoll_create but not epoll_create1. > > New code introduced in the following commit uses epoll_create1 but > guards it using CONFIG_EPOLL rather than CONFIG_EPOLL_CREATE1.

[Qemu-devel] CONFIG_EPOLL vs CONFIG_EPOLL_CREATE1

2016-02-22 Thread Matthew Fortune
Hi, I've recently tried building qemu with a sysroot that has support for epoll_create but not epoll_create1. New code introduced in the following commit uses epoll_create1 but guards it using CONFIG_EPOLL rather than CONFIG_EPOLL_CREATE1. Is there any reason for this or can the guard be changed