diff options
author | Tom de Vries <tdevries@suse.de> | 2024-09-24 13:06:32 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-09-24 13:06:32 +0200 |
commit | fa61a48db2aca21b7c1dd43196f315137e413516 (patch) | |
tree | 94f36a743923fff66350da7f3c148078061c9d10 /gdb/python/python-internal.h | |
parent | 1ccb6f106a77893b00287bbfbaa69f22f9567d2c (diff) | |
download | binutils-fa61a48db2aca21b7c1dd43196f315137e413516.zip binutils-fa61a48db2aca21b7c1dd43196f315137e413516.tar.gz binutils-fa61a48db2aca21b7c1dd43196f315137e413516.tar.bz2 |
[gdb/python] Eliminate GDB_PY_SET_HANDLE_EXCEPTION
Result of:
...
$ search="GDB_PY_SET_HANDLE_EXCEPTION ("
$ replace="return gdbpy_handle_gdb_exception (-1, "
$ sed -i \
"s/$search/$replace/" \
gdb/python/*.c
...
Also remove the now unused GDB_PY_SET_HANDLE_EXCEPTION.
No functional changes.
Tested on x86_64-linux.
Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/python/python-internal.h')
-rw-r--r-- | gdb/python/python-internal.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index a6ee4a9..d723c4d 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -932,13 +932,6 @@ private: PyGILState_STATE m_state; }; -/* Use this in a 'catch' block to convert the exception to a Python - exception and return -1. */ -#define GDB_PY_SET_HANDLE_EXCEPTION(Exception) \ - do { \ - return gdbpy_handle_gdb_exception (-1, Exception); \ - } while (0) - int gdbpy_print_python_errors_p (void); void gdbpy_print_stack (void); void gdbpy_print_stack_or_quit (); |