Re: [ovs-dev] [PATCH 03/14] socket-util: Maximum file descriptors for windows.

2014-02-21 Thread Gurucharan Shetty
On Thu, Feb 20, 2014 at 1:34 PM, Ben Pfaff wrote: > On Wed, Feb 19, 2014 at 03:36:14PM -0800, Gurucharan Shetty wrote: >> Windows does not have a getrlimit() function. As such, >> there is no limit to number of file descriptors that >> can be opened. So, set an aritificial limit of 1024. >> This m

Re: [ovs-dev] [PATCH 03/14] socket-util: Maximum file descriptors for windows.

2014-02-20 Thread Ben Pfaff
On Wed, Feb 19, 2014 at 03:36:14PM -0800, Gurucharan Shetty wrote: > Windows does not have a getrlimit() function. As such, > there is no limit to number of file descriptors that > can be opened. So, set an aritificial limit of 1024. > This may be increased in the future if the limit is too > low.

[ovs-dev] [PATCH 03/14] socket-util: Maximum file descriptors for windows.

2014-02-19 Thread Gurucharan Shetty
Windows does not have a getrlimit() function. As such, there is no limit to number of file descriptors that can be opened. So, set an aritificial limit of 1024. This may be increased in the future if the limit is too low. Co-authored-by: Linda Sun Signed-off-by: Linda Sun Signed-off-by: Guruchar