diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-18 15:55:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-18 15:55:53 +0000 |
commit | a8f2ec5f48af6f669a6bf96dc0dc21583eb8942c (patch) | |
tree | 9fbba25e642431ad057a293803acebd24304da03 /gdb/corelow.c | |
parent | 8a4d187339907aa6ead7102b27e51aebc226d264 (diff) | |
download | gdb-a8f2ec5f48af6f669a6bf96dc0dc21583eb8942c.tar.gz |
2003-01-18 Andrew Cagney <ac131313@redhat.com>
* ada-valprint.c: Eliminate PTR.
* breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
* defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
* exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
* objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
* remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
* solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
* symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index ff758b81c9d..016140fdac6 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -58,7 +58,7 @@ static struct core_fns *core_vec = NULL; static void core_files_info (struct target_ops *); #ifdef SOLIB_ADD -static int solib_add_stub (PTR); +static int solib_add_stub (void *); #endif static struct core_fns *sniff_core_bfd (bfd *); @@ -75,7 +75,7 @@ static void core_close_cleanup (void *ignore); static void get_core_registers (int); -static void add_to_thread_list (bfd *, asection *, PTR); +static void add_to_thread_list (bfd *, asection *, void *); static int ignore (CORE_ADDR, char *); @@ -222,7 +222,7 @@ core_close_cleanup (void *ignore) is really an int * which points to from_tty. */ static int -solib_add_stub (PTR from_ttyp) +solib_add_stub (void *from_ttyp) { SOLIB_ADD (NULL, *(int *) from_ttyp, ¤t_target, auto_solib_add); re_enable_breakpoints_in_shlibs (); @@ -234,7 +234,7 @@ solib_add_stub (PTR from_ttyp) list of threads in a core file. */ static void -add_to_thread_list (bfd *abfd, asection *asect, PTR reg_sect_arg) +add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg) { int thread_id; asection *reg_sect = (asection *) reg_sect_arg; |