2005-04-29 Paul Brook <paul@codesourcery.com>

* gdb/remote-sim.c (SIGTRAP): Provide default defnition.
	* gdb/signals/signals.c (SIGRAP): Ditto.
This commit is contained in:
Paul Brook
2005-10-20 03:35:48 +00:00
parent 2ba1c45d6d
commit b5888f94c7
3 changed files with 13 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2005-04-29 Paul Brook <paul@codesourcery.com>
* gdb/remote-sim.c (SIGTRAP): Provide default defnition.
* gdb/signals/signals.c (SIGRAP): Ditto.
2005-04-25 Paul Brook <paul@codesourcery.com>
* gdb/configure.tgt: Don't build rdi-share library.

View File

@@ -44,6 +44,10 @@
#include "sim-regno.h"
#include "arch-utils.h"
#ifndef SIGTRAP
#define SIGTRAP 5
#endif
/* Prototypes */
extern void _initialize_remote_sim (void);

View File

@@ -30,6 +30,10 @@
#include <signal.h>
#ifndef SIGTRAP
#define SIGTRAP 5
#endif
/* Always use __SIGRTMIN if it's available. SIGRTMIN is the lowest
_available_ realtime signal, not the lowest supported; glibc takes
several for its own use. */