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 /include/gdb/signals.h | |
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 'include/gdb/signals.h')
-rw-r--r-- | include/gdb/signals.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/gdb/signals.h b/include/gdb/signals.h index ce8c4ba..2216344 100644 --- a/include/gdb/signals.h +++ b/include/gdb/signals.h @@ -53,10 +53,7 @@ enum target_signal { #define SET(symbol, constant, name, string) \ symbol = constant, -#define ANY(symbol, name, string) \ - symbol, #include "gdb/signals.def" -#undef ANY #undef SET }; |