* remove-udi.c (udi_wait): ifdef around SIGLOST usage. Eg,
authorK. Richard Pixley <rich@cygnus>
Sat, 1 May 1993 00:06:46 +0000 (00:06 +0000)
committerK. Richard Pixley <rich@cygnus>
Sat, 1 May 1993 00:06:46 +0000 (00:06 +0000)
  Solaris doesn't have SIGLOST so use SIGURG as a backup.

gdb/ChangeLog
gdb/remote-udi.c

index f1bc880f1f006924b9ac5f992a2bc75c18aa6ef9..1fec572c41c29b5f8ba54b89392a325632e70e2c 100644 (file)
@@ -1,3 +1,8 @@
+Fri Apr 30 16:50:38 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
+
+       * remove-udi.c (udi_wait): ifdef around SIGLOST usage.  Eg,
+         Solaris doesn't have SIGLOST so use SIGURG as a backup.
+
 Fri Apr 30 11:05:42 1993  Jim Kingdon  (kingdon@cygnus.com)
 
        * ser-unix.c [USE_{TERMIO,ALARM}_TIMEOUT]: New code to deal with
index 54a61972a0ac3d16d56783b340041681a5f0178a..241745240b7c6c049bef65e7568efe86cdda5ba9 100644 (file)
@@ -583,7 +583,11 @@ udi_wait (status)
       WSETSTOP ((*status), SIGTSTP);
       break;
     case UDIWarned:
+#ifdef SIGLOST
       WSETSTOP ((*status), SIGLOST);
+#else
+      WSETSTOP ((*status), SIGURG);
+#endif
       break;
     case UDIStepped:
     case UDIBreak:
This page took 0.030819 seconds and 4 git commands to generate.