diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-12-26 07:08:08 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-12-26 07:08:08 +0000 |
commit | 307feb1fd5a119fd65fcee84f33e89aa8df4d439 (patch) | |
tree | f1fed77eb6e0581f337b62f8613423f85120c5b6 | |
parent | 6d1e5a964ef5afbf2e6581ca798955c0d7dc10f3 (diff) | |
download | emacs-307feb1fd5a119fd65fcee84f33e89aa8df4d439.tar.gz |
(XTread_socket): Make proper junk values to pass to select.
-rw-r--r-- | src/xterm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index 74a16180b73..5df8f37b0d6 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -3448,13 +3448,15 @@ XTread_socket (sd, bufp, numchars, waitp, expected) there is an EOF condition; in other words, that X has died. Act as if there had been a hangup. */ int fd = ConnectionNumber (x_current_display); - SELECT_TYPE mask; + SELECT_TYPE mask, junk1, junk2; EMACS_TIME timeout; FD_ZERO (&mask); FD_SET (fd, &mask); EMACS_SET_SECS_USECS (timeout, 0, 0); - if (0 != select (fd + 1, &mask, (long *) 0, (long *) 0, &timeout) + FD_ZERO (&junk1); + FD_ZERO (&junk2); + if (0 != select (fd + 1, &mask, &junk1, &junk2, &timeout) && !XStuffPending ()) kill (getpid (), SIGHUP); } |