Document 'set|show exec-file-mismatch (ask|warn|off)'
[binutils-gdb.git] / gdb / gdbcore.h
index 04a235dd9040c9a46a6bf575e4d000ef66a1dcba..9d0f62bc980689b9eaaf11e91586467d7e99f836 100644 (file)
@@ -1,6 +1,6 @@
 /* Machine independent variables that describe the core file under GDB.
 
-   Copyright (C) 1986-2018 Free Software Foundation, Inc.
+   Copyright (C) 1986-2020 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -133,15 +133,15 @@ extern void specify_exec_file_hook (void (*hook) (const char *filename));
 
 /* Binary File Diddler for the core file.  */
 
-extern bfd *core_bfd;
+#define core_bfd (current_program_space->cbfd.get ())
 
-/* corelow.c target.  It is never NULL after GDB initialization.  */
+/* Whether to open exec and core files read-only or read-write.  */
 
-extern struct target_ops *the_core_target;
+extern bool write_files;
 
-/* Whether to open exec and core files read-only or read-write.  */
+/* Open and set up the core file bfd.  */
 
-extern int write_files;
+extern void core_target_open (const char *arg, int from_tty);
 
 extern void core_file_command (const char *filename, int from_tty);
 
@@ -157,6 +157,11 @@ extern void exec_file_locate_attach (int pid, int defer_bp_reset, int from_tty);
 
 extern void validate_files (void);
 
+/* Give the user a message if the current exec file does not match the exec
+   file determined from the target.  In case of mismatch, ask the user
+   if the exec file determined from target must be loaded.  */
+extern void validate_exec_file (int from_tty);
+
 /* The current default bfd target.  */
 
 extern char *gnutarget;
@@ -213,7 +218,7 @@ struct core_fns
        address X is at location core_reg_sect+x+reg_addr.  */
 
     void (*core_read_registers) (struct regcache *regcache,
-                                char *core_reg_sect,
+                                gdb_byte *core_reg_sect,
                                 unsigned core_reg_size,
                                 int which, CORE_ADDR reg_addr);
 
@@ -269,8 +274,7 @@ private:
   std::string m_storage;
 };
 
-/* NOTE: cagney/2004-04-05: Replaced by "regset.h" and
-   regset_from_core_section().  */
+/* Replaced by the "iterate_over_regset_sections" gdbarch method.  */
 extern void deprecated_add_core_fns (struct core_fns *cf);
 extern int default_core_sniffer (struct core_fns *cf, bfd * abfd);
 extern int default_check_format (bfd * abfd);