diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-09-06 13:34:03 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-09-06 13:34:03 +0000 |
commit | a6eb9bc860e2b9232df85d90311e041a2bef08e5 (patch) | |
tree | 50279f376cc3526912c4213a7641b385eafc5739 /gdb | |
parent | 74609e7188f10d5e809774d81245232c18824fba (diff) | |
download | gdb-a6eb9bc860e2b9232df85d90311e041a2bef08e5.zip gdb-a6eb9bc860e2b9232df85d90311e041a2bef08e5.tar.gz gdb-a6eb9bc860e2b9232df85d90311e041a2bef08e5.tar.bz2 |
gdb/
* common/signals.c (ANY): Remove.
(SET): No longer use ANY.
include/gdb/
* signals.def: Replace all ANY uses by SET with specific numbers.
* signals.h (ANY): Remove.
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 }; |