changeset 16055:b69d8517497a

(record_asynch_buffer_change, gobble_input): Use sigblock instead of sigblockx.
author Richard M. Stallman <rms@gnu.org>
date Sun, 01 Sep 1996 22:08:35 +0000
parents 2402c860793b
children bfe1d6597f08
files src/keyboard.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Sun Sep 01 22:08:12 1996 +0000
+++ b/src/keyboard.c	Sun Sep 01 22:08:35 1996 +0000
@@ -4691,7 +4691,7 @@
   if (interrupt_input)
     {
       SIGMASKTYPE mask;
-      mask = sigblockx (SIGIO);
+      mask = sigblock (sigmask (SIGIO));
       read_avail_input (expected);
       sigsetmask (mask);
     }
@@ -4700,7 +4700,7 @@
   if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
     {
       SIGMASKTYPE mask;
-      mask = sigblockx (SIGALRM);
+      mask = sigblock (sigmask (SIGALRM));
       read_avail_input (expected);
       sigsetmask (mask);
     }
@@ -4740,7 +4740,7 @@
   if (interrupt_input)
     {
       SIGMASKTYPE mask;
-      mask = sigblockx (SIGIO);
+      mask = sigblock (sigmask (SIGIO));
       kbd_buffer_store_event (&event);
       sigsetmask (mask);
     }