mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 13:53:29 +08:00
* main.c: New HAVE_SIGSETMASK #ifdefs.
This commit is contained in:
@ -1,5 +1,13 @@
|
|||||||
Fri Apr 19 09:36:50 1991 Jim Kingdon (kingdon at cygint.cygnus.com)
|
Fri Apr 19 09:36:50 1991 Jim Kingdon (kingdon at cygint.cygnus.com)
|
||||||
|
|
||||||
|
* main.c: New HAVE_SIGSETMASK #ifdefs.
|
||||||
|
|
||||||
|
* coffread.c (read_coff_symtab): Check for "LF%" with all the
|
||||||
|
other L*% things.
|
||||||
|
|
||||||
|
* coffread.c (SDB_TYPE): New macro.
|
||||||
|
various: Use it instead of checking against T_NULL.
|
||||||
|
|
||||||
* Makefile.dist (cplus-dem.o): Hack in an #include "param.h"
|
* Makefile.dist (cplus-dem.o): Hack in an #include "param.h"
|
||||||
before we compile it.
|
before we compile it.
|
||||||
defs.h: Protect against multiple inclusion.
|
defs.h: Protect against multiple inclusion.
|
||||||
|
@ -195,6 +195,15 @@ char *baud_rate;
|
|||||||
#define STOP_SIGNAL SIGTSTP
|
#define STOP_SIGNAL SIGTSTP
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Some System V have job control but not sigsetmask(). */
|
||||||
|
#if !defined (HAVE_SIGSETMASK)
|
||||||
|
#define HAVE_SIGSETMASK !defined (USG)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !HAVE_SIGSETMASK
|
||||||
|
#define sigsetmask(n)
|
||||||
|
#endif
|
||||||
|
|
||||||
/* This is how `error' returns to command level. */
|
/* This is how `error' returns to command level. */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user