comparison src/systty.h @ 2912:32106dbf6d01

Some changes from Michael K. Johnson for Linux. * sysdep.c (sys_siglist): Don't define this if HAVE_SYS_SIGLIST is #defined. That lets the system provide it, if it has it. * syssignal.h (sigmask): Only define this if <signal.h> hasn't given us a definition already. * syssignal.h (sys_sigpause): Fix argument in prototype. * sysdep.c (init_signals): The masks are called empty_mask and full_mask, not signal_empty_mask and signal_full_mask. (signal_handler_t): Moved .... * syssignal.h: ... to here. * systty.h (EMACS_SET_TTY_PGRP): Call tcsetpgrp with the correct arguments. * emacs.c (main): Don't try to establish signal handlers for SIGBUS and SIGSYS unless they're actually #defined. * systty.h [HAVE_TERMIO, __DGUX]: #include <sys/ioctl.h>.
author Jim Blandy <jimb@redhat.com>
date Wed, 19 May 1993 22:01:21 +0000
parents f1cd54cf1b67
children 725698689fbd
comparison
equal deleted inserted replaced
2911:9c3ca97cf30a 2912:32106dbf6d01
21 #define HAVE_TCATTR 21 #define HAVE_TCATTR
22 #endif 22 #endif
23 23
24 /* Include the proper files. */ 24 /* Include the proper files. */
25 #ifdef HAVE_TERMIO 25 #ifdef HAVE_TERMIO
26 #ifdef __DGUX
27 #include <sys/ioctl.h>
28 #endif
26 #include <termio.h> 29 #include <termio.h>
27 #include <fcntl.h> 30 #include <fcntl.h>
28 #else 31 #else
29 #ifdef HAVE_TERMIOS 32 #ifdef HAVE_TERMIOS
30 #include <termio.h> 33 #include <termio.h>
213 #ifdef EMACS_HAVE_TTY_PGRP 216 #ifdef EMACS_HAVE_TTY_PGRP
214 217
215 #ifdef HAVE_TERMIOS 218 #ifdef HAVE_TERMIOS
216 219
217 #define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp ((fd))) 220 #define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp ((fd)))
218 #define EMACS_SET_TTY_PGRP(fd, pgid) (*(pgid) = tcsetpgrp ((fd))) 221 #define EMACS_SET_TTY_PGRP(fd, pgid) (*(pgid) = tcsetpgrp ((fd), *(pgid)))
219 222
220 #else 223 #else
221 #ifdef TIOCSPGRP 224 #ifdef TIOCSPGRP
222 225
223 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid))) 226 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid)))