aboutsummaryrefslogtreecommitdiff
path: root/gdb/hppab-nat.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1994-01-18 04:02:06 +0000
committerJeff Law <law@redhat.com>1994-01-18 04:02:06 +0000
commit5c38fcee3f85a29611b1f57910be963a21b27795 (patch)
treedff7d7260e1818a44243edd38fd9a9cc8caa88b1 /gdb/hppab-nat.c
parentaf8b79066722cbfa82508a188b0c744058789137 (diff)
downloadgdb-5c38fcee3f85a29611b1f57910be963a21b27795.zip
gdb-5c38fcee3f85a29611b1f57910be963a21b27795.tar.gz
gdb-5c38fcee3f85a29611b1f57910be963a21b27795.tar.bz2
* hppab-nat.c (_initialize_kernel_u_addr): Delete unwanted functions.
Diffstat (limited to 'gdb/hppab-nat.c')
-rw-r--r--gdb/hppab-nat.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/gdb/hppab-nat.c b/gdb/hppab-nat.c
index ac36652..dc63120 100644
--- a/gdb/hppab-nat.c
+++ b/gdb/hppab-nat.c
@@ -98,52 +98,6 @@ detach (signal)
-/* KERNEL_U_ADDR is the amount to subtract from u.u_ar0
- to get the offset in the core file of the register values. */
-#if defined (KERNEL_U_ADDR_BSD)
-/* Get kernel_u_addr using BSD-style nlist(). */
-CORE_ADDR kernel_u_addr;
-
-#include <a.out.gnu.h> /* For struct nlist */
-
-void
-_initialize_kernel_u_addr ()
-{
- struct nlist names[2];
-
- names[0].n_un.n_name = "_u";
- names[1].n_un.n_name = NULL;
- if (nlist ("/vmunix", names) == 0)
- kernel_u_addr = names[0].n_value;
- else
- fatal ("Unable to get kernel u area address.");
-}
-#endif /* KERNEL_U_ADDR_BSD. */
-
-#if defined (KERNEL_U_ADDR_HPUX)
-/* Get kernel_u_addr using HPUX-style nlist(). */
-CORE_ADDR kernel_u_addr;
-
-struct hpnlist {
- char * n_name;
- long n_value;
- unsigned char n_type;
- unsigned char n_length;
- short n_almod;
- short n_unused;
-};
-static struct hpnlist nl[] = {{ "_u", -1, }, { (char *) 0, }};
-
-/* read the value of the u area from the hp-ux kernel */
-void
-_initialize_kernel_u_addr ()
-{
- struct user u;
- nlist ("/hp-ux", &nl);
- kernel_u_addr = nl[0].n_value;
-}
-#endif /* KERNEL_U_ADDR_HPUX. */
-
#if !defined (offsetof)
#define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
#endif