Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1134)

Side by Side Diff: gdb/auto-load.h

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/arm-wince-tdep.c ('k') | gdb/auto-load.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* GDB routines for supporting auto-loaded scripts.
2
3 Copyright (C) 2012 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #ifndef AUTO_LOAD_H
21 #define AUTO_LOAD_H 1
22
23 struct program_space;
24
25 struct script_language
26 {
27 const char *suffix;
28
29 void (*source_script_for_objfile) (struct objfile *objfile, FILE *file,
30 const char *filename);
31 };
32
33 extern int global_auto_load;
34
35 extern int auto_load_local_gdbinit;
36 extern char *auto_load_local_gdbinit_pathname;
37 extern int auto_load_local_gdbinit_loaded;
38
39 extern struct auto_load_pspace_info *
40 get_auto_load_pspace_data_for_loading (struct program_space *pspace);
41 extern int maybe_add_script (struct auto_load_pspace_info *pspace_info,
42 int loaded, const char *name,
43 const char *full_path,
44 const struct script_language *language);
45 extern void auto_load_objfile_script (struct objfile *objfile,
46 const struct script_language *language);
47 extern void load_auto_scripts_for_objfile (struct objfile *objfile);
48 extern int
49 script_not_found_warning_print (struct auto_load_pspace_info *pspace_info);
50 extern char auto_load_info_scripts_pattern_nl[];
51 extern void auto_load_info_scripts (char *pattern, int from_tty,
52 const struct script_language *language);
53
54 extern struct cmd_list_element **auto_load_set_cmdlist_get (void);
55 extern struct cmd_list_element **auto_load_show_cmdlist_get (void);
56 extern struct cmd_list_element **auto_load_info_cmdlist_get (void);
57
58 extern int file_is_auto_load_safe (const char *filename,
59 const char *debug_fmt, ...);
60
61 #endif /* AUTO_LOAD_H */
OLDNEW
« no previous file with comments | « gdb/arm-wince-tdep.c ('k') | gdb/auto-load.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698