RS6000 Add support to print vector register contents as float128
[binutils-gdb.git] / gdb / gcore.h
index 945d4a483584a6fc3135dc8d33a31fa035c024f4..7e8e316926b0c7a9a91176cc3ee79a261262aa54 100644 (file)
@@ -1,6 +1,6 @@
 /* Support for reading/writing gcore files.
 
-   Copyright (C) 2009, 2012 Free Software Foundation, Inc.
+   Copyright (C) 2009-2021 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
 #if !defined (GCORE_H)
 #define GCORE_H 1
 
-extern bfd *create_gcore_bfd (char *filename);
+#include "gdb_bfd.h"
+
+struct thread_info;
+
+extern gdb_bfd_ref_ptr create_gcore_bfd (const char *filename);
 extern void write_gcore_file (bfd *obfd);
-extern bfd *load_corefile (char *filename, int from_tty);
+extern int objfile_find_memory_regions (struct target_ops *self,
+                                       find_memory_region_ftype func,
+                                       void *obfd);
+
+/* Find the signalled thread.  In case there's more than one signalled
+   thread, prefer the current thread, if it is signalled.  If no thread was
+   signalled, default to the current thread, unless it has exited, in which
+   case return NULL.  */
+
+extern thread_info *gcore_find_signalled_thread ();
 
 #endif /* GCORE_H */