diff options
author | Phil Muldoon <pmuldoon@redhat.com> | 2011-11-28 15:49:43 +0000 |
---|---|---|
committer | Phil Muldoon <pmuldoon@redhat.com> | 2011-11-28 15:49:43 +0000 |
commit | 5d9c59954f8b3d17402ac68681556a8f858833e2 (patch) | |
tree | d30f59cc34feaca48bc61e9541daeb668e3f8cfe /gdb/python/python.c | |
parent | 641c924047c553179c24b790133286ae41960fae (diff) | |
download | gdb-5d9c59954f8b3d17402ac68681556a8f858833e2.zip gdb-5d9c59954f8b3d17402ac68681556a8f858833e2.tar.gz gdb-5d9c59954f8b3d17402ac68681556a8f858833e2.tar.bz2 |
2011-11-28 Phil Muldoon <pmuldoon@redhat.com>
PR python/13369
PR python/13374
* python/python.c (gdbpy_decode_line): Do not acquire GIL.
* python/py-inferior.c (inferior_to_inferior_object): Ditto.
* python/py-value.c (valpy_nonzero): Use TRY_CATCH to catch GDB
exceptions.
* python/py-type.c (typy_strip_typedefs): Ditto.
(typy_legacy_template_argument): Ditto.
* python/py-inferior.c (inferior_to_inferior_object): Ditto.
* python/py-breakpoint.c (bppy_set_ignore_count): Ditto.
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index 108e542..6022572 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -504,7 +504,7 @@ gdbpy_decode_line (PyObject *self, PyObject *args) if (! PyArg_ParseTuple (args, "|s", &arg)) return NULL; - cleanups = ensure_python_env (get_current_arch (), current_language); + cleanups = make_cleanup (null_cleanup, NULL); TRY_CATCH (except, RETURN_MASK_ALL) { |