]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment fix.
authorKarl Heuer <kwzh@gnu.org>
Mon, 5 Jun 1995 17:30:47 +0000 (17:30 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 5 Jun 1995 17:30:47 +0000 (17:30 +0000)
(POSIX_SIGNALS): Defined.

src/s/irix5-0.h

index ea39a51eeeca151106da23cdcdc49fb5fa4ec36a..cccbf27c96979b74f486f26b0c6548cb265ea821 100644 (file)
@@ -59,11 +59,6 @@ char *_getpty();
 /* We need only try once to open a pty.  */
 #define PTY_ITERATION
 /* Here is how to do it.  */
-/* It is necessary to prevent SIGCHLD signals within _getpty.
-   So we block them. But since all of Emacs uses classic SYSV signal()
-   signals, there is no reliable way to do this (unlike BSD sighold or
-   POSIX sigaction).  On Irix 5.* systems, the implementation of
-   sigaction is as close as you can get to a universal. */
 #define PTY_OPEN                                           \
 {                                                          \
   struct sigaction ocstat, cstat;                          \
@@ -83,6 +78,10 @@ char *_getpty();
   strcpy (pty_name, name);                                 \
 }
 
+/* Since we use POSIX constructs in PTY_OPEN, we must force POSIX
+   throughout. */
+#define POSIX_SIGNALS  
+
 /* jpff@maths.bath.ac.uk reports `struct exception' is not defined
    on this system, so inhibit use of matherr.  */
 #define NO_MATHERR