mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
gdb: bool-ify ext_lang_auto_load_enabled and friends
Make it and related functions return bool. Move function comments to header where applicable. gdb/ChangeLog: * auto-load.h (auto_load_gdb_scripts_enabled): Return bool, move comment here. * auto-load.c (auto_load_gdb_scripts_enabled): Return bool, move comment to header. * extension-priv.h (struct extension_language_script_ops) <auto_load_enabled>: Return bool. * extension.h (ext_lang_auto_load_enabled): Return bool, move comment here. * extension.c (ext_lang_auto_load_enabled): Return bool, move comment to header. * guile/guile-header.h (gdbscm_auto_load_enabled): Return bool, move comment here. * guile/scm-auto-load.c (gdbscm_auto_load_enabled): Return bool, move comment to header. * python/python-header.h (gdbpy_auto_load_enabled): Return bool, move comment here. * python/py-auto-load.c (gdbpy_auto_load_enabled): Return bool, move comment to header. Change-Id: I657a17d2dab77a36884a137ce9b23a2cc6d53140
This commit is contained in:
@ -595,7 +595,10 @@ extern struct value *vlscm_convert_value_from_scheme
|
||||
extern objfile_script_sourcer_func gdbscm_source_objfile_script;
|
||||
extern objfile_script_executor_func gdbscm_execute_objfile_script;
|
||||
|
||||
extern int gdbscm_auto_load_enabled (const struct extension_language_defn *);
|
||||
/* Return true if auto-loading Guile scripts is enabled.
|
||||
This is the extension_language_script_ops.auto_load_enabled "method". */
|
||||
|
||||
extern bool gdbscm_auto_load_enabled (const struct extension_language_defn *);
|
||||
|
||||
extern void gdbscm_preserve_values
|
||||
(const struct extension_language_defn *,
|
||||
|
@ -41,10 +41,9 @@ show_auto_load_guile_scripts (struct ui_file *file, int from_tty,
|
||||
fprintf_filtered (file, _("Auto-loading of Guile scripts is %s.\n"), value);
|
||||
}
|
||||
|
||||
/* Return non-zero if auto-loading Guile scripts is enabled.
|
||||
This is the extension_language_script_ops.auto_load_enabled "method". */
|
||||
/* See guile-internal.h. */
|
||||
|
||||
int
|
||||
bool
|
||||
gdbscm_auto_load_enabled (const struct extension_language_defn *extlang)
|
||||
{
|
||||
return auto_load_guile_scripts;
|
||||
|
Reference in New Issue
Block a user