Re: [ovs-dev] [PATCH 03/14] Ignore epoll specific functions in case of MSVC

2014-07-18 Thread Ben Pfaff
On Thu, Jul 17, 2014 at 07:40:49PM +, Alin Serdean wrote: > The substitute for epoll would be I/O Completion Ports > http://msdn.microsoft.com/en-us/library/windows/desktop/aa365198%28v=vs.85%29.aspx > . > > I will be back later on with a patch with this matter. > > I have taken your review

Re: [ovs-dev] [PATCH 03/14] Ignore epoll specific functions in case of MSVC

2014-07-17 Thread Alin Serdean
1:38 AM To: Alin Serdean Cc: dev@openvswitch.org Subject: Re: [ovs-dev] [PATCH 03/14] Ignore epoll specific functions in case of MSVC On Fri, Jul 11, 2014 at 01:01:26AM +, Alin Serdean wrote: > Bypass epoll_ctl, epoll_create and epoll_wait functions on MSVC. > > Signed-off-by: Ali

Re: [ovs-dev] [PATCH 03/14] Ignore epoll specific functions in case of MSVC

2014-07-11 Thread Ben Pfaff
On Fri, Jul 11, 2014 at 01:01:26AM +, Alin Serdean wrote: > Bypass epoll_ctl, epoll_create and epoll_wait functions on MSVC. > > Signed-off-by: Alin Gabriel Serdean What's the substitute for these on Windows? Maybe it was supposed to be in this hunk, which appears incomplete and wrong: > +#

[ovs-dev] [PATCH 03/14] Ignore epoll specific functions in case of MSVC

2014-07-10 Thread Alin Serdean
Bypass epoll_ctl, epoll_create and epoll_wait functions on MSVC. Signed-off-by: Alin Gabriel Serdean --- lib/dpif-linux.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/lib/dpif-linux.c b/lib/dpif-linux.c index bc284ab..7cf6eff 100644 --- a/lib/dpif-linux.c +++ b/lib/dpif-