Use gdbpy_enter in py-type.c
Change py-type.c to use gdbpy_enter. 2017-01-10 Tom Tromey <tom@tromey.com> * python/py-type.c (save_objfile_types): Use gdbpy_enter.
This commit is contained in:
parent
60e600ec69
commit
c57af3f12b
2 changed files with 5 additions and 4 deletions
|
@ -1048,14 +1048,13 @@ save_objfile_types (struct objfile *objfile, void *datum)
|
|||
{
|
||||
type_object *obj = (type_object *) datum;
|
||||
htab_t copied_types;
|
||||
struct cleanup *cleanup;
|
||||
|
||||
if (!gdb_python_initialized)
|
||||
return;
|
||||
|
||||
/* This prevents another thread from freeing the objects we're
|
||||
operating on. */
|
||||
cleanup = ensure_python_env (get_objfile_arch (objfile), current_language);
|
||||
gdbpy_enter enter_py (get_objfile_arch (objfile), current_language);
|
||||
|
||||
copied_types = create_copied_types_hash (objfile);
|
||||
|
||||
|
@ -1074,8 +1073,6 @@ save_objfile_types (struct objfile *objfile, void *datum)
|
|||
}
|
||||
|
||||
htab_delete (copied_types);
|
||||
|
||||
do_cleanups (cleanup);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue