Use gdbpy_enter in py-progspace.c
Change py-progspace.c to use gdbpy_enter. 2017-01-10 Tom Tromey <tom@tromey.com> * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
This commit is contained in:
parent
2d38bcedc2
commit
bf7da5b06f
2 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2017-01-10 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
* python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
|
||||||
|
|
||||||
2017-01-10 Tom Tromey <tom@tromey.com>
|
2017-01-10 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
|
* python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
|
||||||
|
|
|
@ -323,7 +323,6 @@ pspy_set_type_printers (PyObject *o, PyObject *value, void *ignore)
|
||||||
static void
|
static void
|
||||||
py_free_pspace (struct program_space *pspace, void *datum)
|
py_free_pspace (struct program_space *pspace, void *datum)
|
||||||
{
|
{
|
||||||
struct cleanup *cleanup;
|
|
||||||
pspace_object *object = (pspace_object *) datum;
|
pspace_object *object = (pspace_object *) datum;
|
||||||
/* This is a fiction, but we're in a nasty spot: The pspace is in the
|
/* This is a fiction, but we're in a nasty spot: The pspace is in the
|
||||||
process of being deleted, we can't rely on anything in it. Plus
|
process of being deleted, we can't rely on anything in it. Plus
|
||||||
|
@ -336,10 +335,9 @@ py_free_pspace (struct program_space *pspace, void *datum)
|
||||||
being deleted. */
|
being deleted. */
|
||||||
struct gdbarch *arch = target_gdbarch ();
|
struct gdbarch *arch = target_gdbarch ();
|
||||||
|
|
||||||
cleanup = ensure_python_env (arch, current_language);
|
gdbpy_enter enter_py (arch, current_language);
|
||||||
object->pspace = NULL;
|
object->pspace = NULL;
|
||||||
Py_DECREF ((PyObject *) object);
|
Py_DECREF ((PyObject *) object);
|
||||||
do_cleanups (cleanup);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return a borrowed reference to the Python object of type Pspace
|
/* Return a borrowed reference to the Python object of type Pspace
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue