Re: [ovs-dev] [PATCH v2 3/4] socket-util: poll() for Windows.

2014-02-21 Thread Gurucharan Shetty
On Fri, Feb 21, 2014 at 1:39 PM, Ben Pfaff wrote: > On Fri, Feb 21, 2014 at 01:14:35PM -0800, Gurucharan Shetty wrote: >> +#ifndef _WIN32 >> pfd.events = POLLOUT; >> +#else >> +pfd.events = POLLWRNORM; >> +#endif > > Does this mean that Windows has POLLWRNORM but not POLLOUT? POSIX > say

Re: [ovs-dev] [PATCH v2 3/4] socket-util: poll() for Windows.

2014-02-21 Thread Ben Pfaff
On Fri, Feb 21, 2014 at 01:14:35PM -0800, Gurucharan Shetty wrote: > +#ifndef _WIN32 > pfd.events = POLLOUT; > +#else > +pfd.events = POLLWRNORM; > +#endif Does this mean that Windows has POLLWRNORM but not POLLOUT? POSIX says they're equivalent, so we could either use POLLWRNORM everywh