aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-12-22 20:53:23 +0000
committerLRN <lrn1986@gmail.com>2013-12-22 20:53:23 +0000
commitc22f738445aef0242dd22f243d75c5226d8e872f (patch)
treeebd3285d2c344841b732021e063d0bf55130261d
parent39d27884612bcfb02f08bec9c4f84199d4d653d3 (diff)
downloadlibextractor-c22f738445aef0242dd22f243d75c5226d8e872f.tar.gz
libextractor-c22f738445aef0242dd22f243d75c5226d8e872f.zip
Harmonize W32 IPC timeout with GNU IPC timeout
-rw-r--r--src/main/extractor_ipc_w32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/extractor_ipc_w32.c b/src/main/extractor_ipc_w32.c
index 5d40b40..2b2098f 100644
--- 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,
726 if (c == 0) 726 if (c == 0)
727 return 1; /* nothing left to do! */ 727 return 1; /* nothing left to do! */
728 728
729 ms = 10000; 729 ms = 500;
730 first_ready = WaitForMultipleObjects (c, events, FALSE, ms); 730 first_ready = WaitForMultipleObjects (c, events, FALSE, ms);
731 if (first_ready == WAIT_TIMEOUT || first_ready == WAIT_FAILED) 731 if (first_ready == WAIT_TIMEOUT || first_ready == WAIT_FAILED)
732 { 732 {