* remove-udi.c (udi_wait): ifdef around SIGLOST usage. Eg,

Solaris doesn't have SIGLOST so use SIGURG as a backup.
This commit is contained in:
K. Richard Pixley 1993-05-01 00:06:46 +00:00
parent 77372bff03
commit 5385e525fe
2 changed files with 9 additions and 0 deletions

View 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

View 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: