Re: [PATCH 0/4] Fix file locking with retry and timeout on Windows

2015-06-05 Thread Michael Haggerty
On 06/05/2015 09:45 PM, Johannes Sixt wrote: > The first patch is the same that I posted earlier. It fixes a build > failure on Windows on master due to missing random/srandom. > > The remaining 3 patches replace the select() invocation that waits > for a short time period by the version with poll

Re: [PATCH 0/4] Fix file locking with retry and timeout on Windows

2015-06-05 Thread Junio C Hamano
Johannes Sixt writes: > The remaining 3 patches replace the select() invocation that waits > for a short time period by the version with poll() that we already > use in help.c. This is necessary because a select() call where all > three sets of file descriptors are empty is not supported on Windo

[PATCH 0/4] Fix file locking with retry and timeout on Windows

2015-06-05 Thread Johannes Sixt
The first patch is the same that I posted earlier. It fixes a build failure on Windows on master due to missing random/srandom. The remaining 3 patches replace the select() invocation that waits for a short time period by the version with poll() that we already use in help.c. This is necessary bec