mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-29 04:53:56 +08:00
* 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:
parent
77372bff03
commit
5385e525fe
@ -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
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user