]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Apparently it helps for an OVERLAPPED structure to contain a valid
authorSimon Tatham <anakin@pobox.com>
Mon, 28 Aug 2006 18:16:49 +0000 (18:16 +0000)
committerSimon Tatham <anakin@pobox.com>
Mon, 28 Aug 2006 18:16:49 +0000 (18:16 +0000)
event handle. This seems to have fixed _some_, but not all, of the
curious data loss issues in the Windows serial backend.

[originally from svn r6826]

windows/winhandl.c

index fc641812a1b024a943f3d9318bb17aa4c3912add..7a3cce3521b9dbf4d84fb1304b3e6c403f694830 100644 (file)
@@ -101,19 +101,26 @@ static DWORD WINAPI handle_input_threadfunc(void *param)
 {
     struct handle_input *ctx = (struct handle_input *) param;
     OVERLAPPED ovl, *povl;
+    HANDLE oev;
 
-    if (ctx->flags & HANDLE_FLAG_OVERLAPPED)
+    if (ctx->flags & HANDLE_FLAG_OVERLAPPED) {
        povl = &ovl;
-    else
+       oev = CreateEvent(NULL, TRUE, FALSE, NULL);
+    } else {
        povl = NULL;
+    }
 
     while (1) {
-       if (povl)
+       if (povl) {
            memset(povl, 0, sizeof(OVERLAPPED));
+           povl->hEvent = oev;
+       }
        ctx->readret = ReadFile(ctx->h, ctx->buffer, sizeof(ctx->buffer),
                                &ctx->len, povl);
-       if (povl && !ctx->readret && GetLastError() == ERROR_IO_PENDING)
-           ctx->readret = GetOverlappedResult(ctx->h, povl, &ctx->len, TRUE);
+       if (povl && !ctx->readret && GetLastError() == ERROR_IO_PENDING) {
+           WaitForSingleObject(povl->hEvent, INFINITE);
+           ctx->readret = GetOverlappedResult(ctx->h, povl, &ctx->len, FALSE);
+       }
 
        if (!ctx->readret)
            ctx->len = 0;
@@ -132,6 +139,9 @@ static DWORD WINAPI handle_input_threadfunc(void *param)
            break;                     /* main thread told us to shut down */
     }
 
+    if (povl)
+       CloseHandle(oev);
+
     return 0;
 }