diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-04-17 15:49:16 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-04-17 15:49:16 +0000 |
commit | e2207b9a2828674a1deaf98db4ab4d0079b96d34 (patch) | |
tree | d26710472879a824daefee3c3ac5f08a503047c1 /gdb/auto-load.h | |
parent | e4ab2fad14aace768d2241c2595a29de08deabad (diff) | |
download | gdb-e2207b9a2828674a1deaf98db4ab4d0079b96d34.zip gdb-e2207b9a2828674a1deaf98db4ab4d0079b96d34.tar.gz gdb-e2207b9a2828674a1deaf98db4ab4d0079b96d34.tar.bz2 |
gdb/
auto-load: Move files.
* Makefile.in (SFILES): Add auto-load.c.
(HFILES_NO_SRCDIR): Add auto-load.h.
(COMMON_OBS): Add auto-load.o.
(distclean): Change .gdbinit for gdb-gdb.gdb.
* auto-load.c: New file, with parts from python/py-auto-load.c.
* auto-load.h: New file, with parts from python/python.h.
* configure: Regenerate.
* configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
* gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
* gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
* main.c: Include auto-load.h.
* python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
command.h, observer.h and progspace.h to auto-load.c. Add include
auto-load.h.
(gdbpy_global_auto_load, struct auto_load_pspace_info)
(struct loaded_script, auto_load_pspace_data)
(auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
(hash_loaded_script_entry, eq_loaded_script_entry)
(init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
(maybe_add_script): Move to auto-load.c.
(source_section_scripts): Change maybe_add_script parameters passing,
use script_not_found_warning_print.
(clear_section_scripts, auto_load_objfile_script)
(auto_load_new_objfile, loaded_script_ptr)
(DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
(sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
(gdbpy_initialize_auto_load): Move auto_load_pspace_data,
auto_load_new_objfile and info_auto_load_scripts initizations to
auto-load.c.
* python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
Diffstat (limited to 'gdb/auto-load.h')
-rw-r--r-- | gdb/auto-load.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gdb/auto-load.h b/gdb/auto-load.h new file mode 100644 index 0000000..c026696 --- /dev/null +++ b/gdb/auto-load.h @@ -0,0 +1,36 @@ +/* GDB routines for supporting auto-loaded scripts. + + Copyright (C) 2012 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +#ifndef AUTO_LOAD_H +#define AUTO_LOAD_H 1 + +struct program_space; + +extern int gdbpy_global_auto_load; + +extern struct auto_load_pspace_info * + get_auto_load_pspace_data_for_loading (struct program_space *pspace); +extern int maybe_add_script (struct auto_load_pspace_info *pspace_info, + const char *name, const char *full_path); +extern void auto_load_objfile_script (struct objfile *objfile, + const char *suffix); +extern int + script_not_found_warning_print (struct auto_load_pspace_info *pspace_info); + +#endif /* AUTO_LOAD_H */ |