From: K. Richard Pixley Date: Wed, 20 Oct 1993 21:36:06 +0000 (+0000) Subject: define some signals X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=921f2b29a935200526e9294fc43a161ba1b038fe;p=deliverable%2Fbinutils-gdb.git define some signals --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4681d087fd..1571ef78ec 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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 diff --git a/gdb/config/i386/xm-go32.h b/gdb/config/i386/xm-go32.h index 326277a7ce..4efe061041 100644 --- a/gdb/config/i386/xm-go32.h +++ b/gdb/config/i386/xm-go32.h @@ -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 */