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

Unified Diff: gdb/gdbserver/dll.h

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/gdbserver/configure.srv ('k') | gdb/gdbserver/dll.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/gdbserver/dll.h
diff --git a/gdb/solib-irix.h b/gdb/gdbserver/dll.h
similarity index 63%
copy from gdb/solib-irix.h
copy to gdb/gdbserver/dll.h
index 5306d16ffdae4d49df54ea92cc7a57a9bfd0c2f6..428c60c4e9bac04ce75eb5c6204d7a700f662f3d 100644
--- a/gdb/solib-irix.h
+++ b/gdb/gdbserver/dll.h
@@ -1,6 +1,4 @@
-/* Handle shared libraries for GDB, the GNU Debugger.
-
- Copyright (C) 2007-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1993-2013 Free Software Foundation, Inc.
This file is part of GDB.
@@ -17,10 +15,21 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
-#ifndef SOLIB_IRIX_H
-#define SOLIB_IRIX_H
+#ifndef DLL_H
+#define DLL_H
+
+struct dll_info
+{
+ struct inferior_list_entry entry;
+ char *name;
+ CORE_ADDR base_addr;
+};
+
+extern struct inferior_list all_dlls;
+extern int dlls_changed;
-struct target_so_ops;
-extern struct target_so_ops irix_so_ops;
+extern void clear_dlls (void);
+extern void loaded_dll (const char *name, CORE_ADDR base_addr);
+extern void unloaded_dll (const char *name, CORE_ADDR base_addr);
-#endif /* solib-irix.h */
+#endif /* DLL_H */
« no previous file with comments | « gdb/gdbserver/configure.srv ('k') | gdb/gdbserver/dll.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698