* gdb/remote-sim.c (SIGTRAP): Provide default defnition.
* gdb/signals/signals.c (SIGRAP): Ditto.
+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.
#include "sim-regno.h"
#include "arch-utils.h"
+#ifndef SIGTRAP
+#define SIGTRAP 5
+#endif
+
/* Prototypes */
extern void _initialize_remote_sim (void);
#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. */