mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 13:56:22 +08:00
define some signals
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
Wed Oct 20 14:34:38 1993 K. Richard Pixley (rich@sendai.cygnus.com)
|
||||
|
||||
* config/i386/xm-go32.h: define some signals if they aren't
|
||||
already defined.
|
||||
|
||||
Wed Oct 20 11:35:43 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* Makefile.in (INTERNAL_LDFLAGS): New macro. The new part is
|
||||
|
@ -28,3 +28,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
|
||||
#undef QUIT
|
||||
#define QUIT { pollquit(); }
|
||||
|
||||
#if !defined(SIGURG) & !defined(SIGALRM) & !defined(SIGBUS) & !defined(SIGSTOP)
|
||||
#define SIGURG (NSIG)
|
||||
#define SIGALRM (NSIG + 1)
|
||||
#define SIGBUS (NSIG + 2)
|
||||
#define SIGSTOP (NSIG + 3)
|
||||
#endif /* missing some signals */
|
||||
|
Reference in New Issue
Block a user