diff options
author | Tom Tromey <tromey@redhat.com> | 2013-05-20 20:19:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-05-20 20:19:54 +0000 |
commit | 5d153bd188d03fcd90deb4d3a51e93f77e095894 (patch) | |
tree | c22c47c0d2982677307259692743724e6f7857cb /gdb/python/python-internal.h | |
parent | 56cc411c4ba10261e0149bdb80d613969c3ab130 (diff) | |
download | gdb-5d153bd188d03fcd90deb4d3a51e93f77e095894.zip gdb-5d153bd188d03fcd90deb4d3a51e93f77e095894.tar.gz gdb-5d153bd188d03fcd90deb4d3a51e93f77e095894.tar.bz2 |
* python/py-event.h (gdbpy_initialize_event_generic): Use
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
* python/py-evts.c (add_new_registry): Use
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
* python/python-internal.h
(CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
Diffstat (limited to 'gdb/python/python-internal.h')
-rw-r--r-- | gdb/python/python-internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index 2b4244c..2e09096 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -53,6 +53,13 @@ #define CPYCHECKER_SETS_EXCEPTION #endif +#ifdef WITH_CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION_ATTRIBUTE +#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION \ + __attribute__ ((cpychecker_negative_result_sets_exception)) +#else +#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION +#endif + #include <stdio.h> /* Python 2.4 doesn't include stdint.h soon enough to get {u,}intptr_t |