From 4c63965b8a74d9dd3d8ed6fed659c4db977c6ddd Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Thu, 26 Jan 2012 21:54:45 +0000 Subject: gdb/ Do not open script filenames twice. * cli/cli-cmds.c (source_script_from_stream): Pass to source_python_script also STREAM. * python/py-auto-load.c (source_section_scripts): Pass to source_python_script_for_objfile also STREAM. (auto_load_objfile_script): Pass to source_python_script_for_objfile also INPUT. * python/python-internal.h (source_python_script_for_objfile): New parameter file, rename parameter file to filename. * python/python.c (python_run_simple_file): Call PyRun_SimpleFile instead if !_WIN32. Update the function comment. (source_python_script, source_python_script_for_objfile) (source_python_script): New parameter file, rename parameter file to filename. Pass FILENAME to python_run_simple_file. * python/python.h (source_python_script): New parameter file, rename parameter file to filename. --- gdb/python/python-internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/python/python-internal.h') diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index 328e5d8..22e6b41 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -289,8 +289,8 @@ extern const struct language_defn *python_language; void gdbpy_print_stack (void); -void source_python_script_for_objfile (struct objfile *objfile, - const char *file); +void source_python_script_for_objfile (struct objfile *objfile, FILE *file, + const char *filename); PyObject *python_string_to_unicode (PyObject *obj); char *unicode_to_target_string (PyObject *unicode_str); -- cgit v1.1