* auto-load.c (load_auto_scripts_for_objfile): Add some comments.

This commit is contained in:
Doug Evans 2013-12-04 22:08:38 -08:00
parent 170d82c951
commit c47cf54742
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-12-04 Doug Evans <xdje42@gmail.com>
* auto-load.c (load_auto_scripts_for_objfile): Add some comments.
2013-12-05 Joel Brobecker <brobecker@adacore.com>
Tristan Gingold <gingold@adacore.com>

View File

@ -1015,12 +1015,17 @@ auto_load_section_scripts (struct objfile *objfile, const char *section_name)
void
load_auto_scripts_for_objfile (struct objfile *objfile)
{
/* Return immediately if auto-loading has been globally disabled.
This is to handle sequencing of operations during gdb startup.
Also return immediately if OBJFILE is not actually a file. */
if (!global_auto_load || (objfile->flags & OBJF_NOT_FILENAME) != 0)
return;
/* Load any scripts for this objfile. e.g. foo-gdb.gdb, foo-gdb.py. */
auto_load_objfile_script (objfile, &script_language_gdb);
auto_load_objfile_script (objfile, gdbpy_script_language_defn ());
/* Load any scripts mentioned in AUTO_SECTION_NAME (.debug_gdb_scripts). */
auto_load_section_scripts (objfile, AUTO_SECTION_NAME);
}