diff options
author | marha <marha@users.sourceforge.net> | 2015-04-03 18:02:11 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2015-04-03 18:02:11 +0200 |
commit | 57dd848fb6dd7cf15820172e2abc9fb9de2b4268 (patch) | |
tree | 71ea123b6018cc61a3cdaea9578a56c146ed8367 /xorg-server/hw/xwin/winclipboard | |
parent | 3bc24b271f45f9f33484b8cf53b44f33f7e8a237 (diff) | |
download | vcxsrv-57dd848fb6dd7cf15820172e2abc9fb9de2b4268.tar.gz vcxsrv-57dd848fb6dd7cf15820172e2abc9fb9de2b4268.tar.bz2 vcxsrv-57dd848fb6dd7cf15820172e2abc9fb9de2b4268.zip |
Solved hang-up problem during closing
Diffstat (limited to 'xorg-server/hw/xwin/winclipboard')
-rwxr-xr-x | xorg-server/hw/xwin/winclipboard/thread.c | 23 | ||||
-rwxr-xr-x | xorg-server/hw/xwin/winclipboard/wndproc.c | 1 |
2 files changed, 1 insertions, 23 deletions
diff --git a/xorg-server/hw/xwin/winclipboard/thread.c b/xorg-server/hw/xwin/winclipboard/thread.c index 20c473dd8..bb7418992 100755 --- a/xorg-server/hw/xwin/winclipboard/thread.c +++ b/xorg-server/hw/xwin/winclipboard/thread.c @@ -359,29 +359,6 @@ winClipboardProc(Bool fUseUnicode, char *szDisplay) "Bailing.\n", iReturn); break; } - - if (FD_ISSET(iConnectionNumber, &fdsRead)) { - winDebug - ("winClipboardProc - X connection ready, pumping X event queue\n"); - } - -#ifdef HAS_DEVWINDOWS - /* Check for Windows event ready */ - if (FD_ISSET(fdMessageQueue, &fdsRead)) -#else - if (1) -#endif - { - winDebug - ("winClipboardProc - /dev/windows ready, pumping Windows message queue\n"); - } - -#ifdef HAS_DEVWINDOWS - if (!(FD_ISSET(iConnectionNumber, &fdsRead)) && - !(FD_ISSET(fdMessageQueue, &fdsRead))) { - winDebug("winClipboardProc - Spurious wake, select() returned %d\n", iReturn); - } -#endif } /* Close our X window */ diff --git a/xorg-server/hw/xwin/winclipboard/wndproc.c b/xorg-server/hw/xwin/winclipboard/wndproc.c index c99975193..219085682 100755 --- a/xorg-server/hw/xwin/winclipboard/wndproc.c +++ b/xorg-server/hw/xwin/winclipboard/wndproc.c @@ -170,6 +170,7 @@ winClipboardWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) s_hwndNextViewer = NULL; g_hwndClipboard = NULL; + PostMessage(hwnd, WM_WM_QUIT, 0L, 0L); } return 0; |