diff options
author | K. Richard Pixley <rich@cygnus> | 1993-05-01 00:06:46 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-05-01 00:06:46 +0000 |
commit | 5385e525fe7690f4a2aab6daa5a45b554a9adee0 (patch) | |
tree | da178ca2a0382daa4ae6b6a1f3547046042a1950 /gdb/remote-udi.c | |
parent | 77372bff0385b575abeb1a9bea77b43b8a53f311 (diff) | |
download | gdb-5385e525fe7690f4a2aab6daa5a45b554a9adee0.zip gdb-5385e525fe7690f4a2aab6daa5a45b554a9adee0.tar.gz gdb-5385e525fe7690f4a2aab6daa5a45b554a9adee0.tar.bz2 |
* remove-udi.c (udi_wait): ifdef around SIGLOST usage. Eg,
Solaris doesn't have SIGLOST so use SIGURG as a backup.
Diffstat (limited to 'gdb/remote-udi.c')
-rw-r--r-- | gdb/remote-udi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index 54a6197..2417452 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -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: |