summaryrefslogtreecommitdiff
path: root/include/link_elf.h
diff options
context:
space:
mode:
authormhitch <mhitch@NetBSD.org>1998-03-25 04:12:32 +0000
committermhitch <mhitch@NetBSD.org>1998-03-25 04:12:32 +0000
commit082edecc20b391de34780c5a6fa8353e7de59bea (patch)
tree4309286a30b72c0dc28c230f3cf6f591183e317e /include/link_elf.h
parent0fb478e609588cacd7956b5c21b48bc6ea2e4523 (diff)
Add support for mips.
Diffstat (limited to 'include/link_elf.h')
-rw-r--r--include/link_elf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/link_elf.h b/include/link_elf.h
index 6725cacc745..813defa6759 100644
--- a/include/link_elf.h
+++ b/include/link_elf.h
@@ -1,4 +1,4 @@
-/* $NetBSD: link_elf.h,v 1.1 1996/12/16 20:37:59 cgd Exp $ */
+/* $NetBSD: link_elf.h,v 1.2 1998/03/25 04:13:01 mhitch Exp $ */
/*
* This only exists for GDB.
@@ -10,6 +10,9 @@
struct link_map {
caddr_t l_addr; /* Base Address of library */
+#ifdef __mips__
+ caddr_t l_offs; /* Load Offset of library */
+#endif
const char *l_name; /* Absolute Path to Library */
void *l_ld; /* Pointer to .dynamic in memory */
struct link_map *l_next, *l_prev; /* linked list of of mapped libs */