commit c22f738445aef0242dd22f243d75c5226d8e872f
parent 39d27884612bcfb02f08bec9c4f84199d4d653d3
Author: LRN <lrn1986@gmail.com>
Date: Sun, 22 Dec 2013 20:53:23 +0000
Harmonize W32 IPC timeout with GNU IPC timeout
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/extractor_ipc_w32.c b/src/main/extractor_ipc_w32.c
@@ -726,7 +726,7 @@ EXTRACTOR_IPC_channel_recv_ (struct EXTRACTOR_Channel **channels,
if (c == 0)
return 1; /* nothing left to do! */
- ms = 10000;
+ ms = 500;
first_ready = WaitForMultipleObjects (c, events, FALSE, ms);
if (first_ready == WAIT_TIMEOUT || first_ready == WAIT_FAILED)
{