aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-02-01 23:34:05 +0000
committerAndrew Cagney <cagney@redhat.com>2003-02-01 23:34:05 +0000
commit9a043c1d0c3e8a873b2cd90f6e048c77d2efdc8a (patch)
tree58a5484a279efb44d8b29cc0a3acfdcf3abb8078 /gdb/utils.c
parentb66cc1a0d2931b856edd960b481f7d8c2d75598e (diff)
downloadfsf-binutils-gdb-9a043c1d0c3e8a873b2cd90f6e048c77d2efdc8a.zip
fsf-binutils-gdb-9a043c1d0c3e8a873b2cd90f6e048c77d2efdc8a.tar.gz
fsf-binutils-gdb-9a043c1d0c3e8a873b2cd90f6e048c77d2efdc8a.tar.bz2
2003-02-01 Andrew Cagney <ac131313@redhat.com>
* defs.h (host_pointer_to_address): Delete declaration. (address_to_host_pointer): Delete declaration. * utils.c (host_pointer_to_address): Delete function. (address_to_host_pointer): Delete function. * procfs.c (procfs_address_to_host_pointer): New function. * procfs.c (proc_set_watchpoint): Use. (procfs_can_use_hw_breakpoint): Update comments. * somsolib.c (hpux_address_to_host_pointer_hack): New function. (som_solib_add): Use. * hppa-tdep.c (hppa_pointer_to_address_hack): New function. * hppa-tdep.c (unwind_command): Use.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index e7353bf..0e92b21 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -2602,25 +2602,6 @@ phex_nz (ULONGEST l, int sizeof_l)
}
-/* Convert to / from the hosts pointer to GDB's internal CORE_ADDR
- using the target's conversion routines. */
-CORE_ADDR
-host_pointer_to_address (void *ptr)
-{
- gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr));
- return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
-}
-
-void *
-address_to_host_pointer (CORE_ADDR addr)
-{
- void *ptr;
-
- gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr));
- ADDRESS_TO_POINTER (builtin_type_void_data_ptr, &ptr, addr);
- return ptr;
-}
-
/* Convert a CORE_ADDR into a string. */
const char *
core_addr_to_string (const CORE_ADDR addr)