summaryrefslogtreecommitdiff
path: root/libusb/version_nano.h
diff options
context:
space:
mode:
authorFrank Li <Frank.Li@nxp.com>2019-08-15 10:21:17 -0500
committerNathan Hjelm <hjelmn@google.com>2019-10-30 19:05:42 -0700
commitc730a8410c8fc683e845fefcc06d6ced349b583b (patch)
treeaa9c527644fb07910a4ae847e5d149d153019a37 /libusb/version_nano.h
parent211d79185120519ca9c436855d3b7406359e793b (diff)
downloadlibusb-c730a8410c8fc683e845fefcc06d6ced349b583b.tar.gz
windows: workaround WaitForMultipleObjects max 64 events limitation.
WaitForMultiObjects have limiation. Only can wait max 64 events. but usbi_poll may pass more than 64 fds. In previous implement, only wait for first 64 events. if previous 64 events were not trigger usbi_poll will wait for about 10s timemout eventhough other event triggered. This patch workaround this limitation. If max events less than 64, call WaitforMultiObjects directly. If max events more than 64, group every 63 events into one work thread. This thread call waitformulitobjects wait for this groug events and one addtional thread exit events. If any events trigger, this thread will trigger main notify events. The main usbi_poll thread call waitforsingleobject wait for notify events. If this events trigger, that means any of work threads get events. Then call exit notify events let all working thread exit safely. Return value changed, 0 means timeout. 1 - N means which event triggered. Closes #612 Signed-off-by: Frank Li <Frank.Li@nxp.com> Signed-off-by: Nathan Hjelm <hjelmn@google.com>
Diffstat (limited to 'libusb/version_nano.h')
-rw-r--r--libusb/version_nano.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index dcba758..dcea538 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11407
+#define LIBUSB_NANO 11408