From 90b0b7d099bbda62ec41fbf345de69eadd9bbff3 Mon Sep 17 00:00:00 2001 From: Igor Zinkovsky Date: Tue, 1 Nov 2011 10:27:46 -0700 Subject: [PATCH] windows: increase the number of OVERLAPPED_ENTRYs passed to GetQueuedCompletionStatusEx --- src/win/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/core.c b/src/win/core.c index ecdc5fb0..2fa8130f 100644 --- a/src/win/core.c +++ b/src/win/core.c @@ -147,7 +147,7 @@ static void uv_poll_ex(uv_loop_t* loop, int block) { BOOL success; DWORD timeout; uv_req_t* req; - OVERLAPPED_ENTRY overlappeds[64]; + OVERLAPPED_ENTRY overlappeds[128]; ULONG count; ULONG i;