]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/gcore.h
Finalized intl-update patches
[thirdparty/binutils-gdb.git] / gdb / gcore.h
index 8d2e8b612910ebc7b6ad9ed0a022256a681d0600..1529a49aaac5b427e66c704aad94df6c13f5554a 100644 (file)
@@ -1,6 +1,6 @@
 /* Support for reading/writing gcore files.
 
-   Copyright (C) 2009-2013 Free Software Foundation, Inc.
+   Copyright (C) 2009-2023 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 */