On Wed, Apr 21, 2010 at 6:08 PM, Derek Chen-Becker wrote:
> Well, after a lot of digging and debugging, I found a hack that seems to
> fix my issue. If I modify the
>
> srclib/apr/support/unix/waitio.c
>
> file so that the line
>
> timeout = f ? f->timeout / 1000 : s->timeout / 1000;
>
>
Well, after a lot of digging and debugging, I found a hack that seems to
fix my issue. If I modify the
srclib/apr/support/unix/waitio.c
file so that the line
timeout= f? f->timeout / 1000 : s->timeout / 1000;
becomes
timeout= f? f->timeout / 100 : s->timeout / 100;
(10