diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/common/signals.c | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c710276..6e3c377 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2010-09-06 Pedro Alves <pedro@codesourcery.com> + Jan Kratochvil <jan.kratochvil@redhat.com> + + * common/signals.c (ANY): Remove. + (SET): No longer use ANY. + 2010-09-06 Yao Qi <yao@codesourcery.com> * infrunc(resume): When inferior is waiting_for_vfork_done, diff --git a/gdb/common/signals.c b/gdb/common/signals.c index ddcc1f3..717a337 100644 --- a/gdb/common/signals.c +++ b/gdb/common/signals.c @@ -55,10 +55,8 @@ static const struct { const char *string; } signals [] = { -#define SET(symbol, constant, name, string) ANY (symbol, name, string) -#define ANY(symbol, name, string) { name, string }, +#define SET(symbol, constant, name, string) { name, string }, #include "gdb/signals.def" -#undef ANY #undef SET }; |