summaryrefslogtreecommitdiff
path: root/src/systty.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-19 22:01:21 +0000
committerJim Blandy <jimb@redhat.com>1993-05-19 22:01:21 +0000
commitd95a856592e469f0ca37c80e03be9ba8f6c5bdcf (patch)
tree36fe3da5b2367a0a38e8d4d67847c65f280ec2df /src/systty.h
parent0b6763424a3f6701db60150de35d94eefdb62ee9 (diff)
downloademacs-d95a856592e469f0ca37c80e03be9ba8f6c5bdcf.tar.gz
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>.
Diffstat (limited to 'src/systty.h')
-rw-r--r--src/systty.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/systty.h b/src/systty.h
index 0123fbbae2e..a7c682cf7c1 100644
--- a/src/systty.h
+++ b/src/systty.h
@@ -23,6 +23,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Include the proper files. */
#ifdef HAVE_TERMIO
+#ifdef __DGUX
+#include <sys/ioctl.h>
+#endif
#include <termio.h>
#include <fcntl.h>
#else
@@ -215,7 +218,7 @@ static struct sensemode {
#ifdef HAVE_TERMIOS
#define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp ((fd)))
-#define EMACS_SET_TTY_PGRP(fd, pgid) (*(pgid) = tcsetpgrp ((fd)))
+#define EMACS_SET_TTY_PGRP(fd, pgid) (*(pgid) = tcsetpgrp ((fd), *(pgid)))
#else
#ifdef TIOCSPGRP