diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/pa64solib.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/pa64solib.c')
-rw-r--r-- | gdb/pa64solib.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gdb/pa64solib.c b/gdb/pa64solib.c index ab568f5..88ff67e 100644 --- a/gdb/pa64solib.c +++ b/gdb/pa64solib.c @@ -59,10 +59,9 @@ /* Defined in exec.c; used to prevent dangling pointer bug. */ extern struct target_ops exec_ops; -static CORE_ADDR - bfd_lookup_symbol PARAMS ((bfd *, char *)); +static CORE_ADDR bfd_lookup_symbol (bfd *, char *); /* This lives in hppa-tdep.c. */ -extern struct unwind_table_entry *find_unwind_entry PARAMS ((CORE_ADDR pc)); +extern struct unwind_table_entry *find_unwind_entry (CORE_ADDR pc); /* These ought to be defined in some public interface, but aren't. They identify dynamic linker events. */ @@ -121,18 +120,18 @@ dld_cache_t; static dld_cache_t dld_cache; -static void pa64_sharedlibrary_info_command PARAMS ((char *, int)); +static void pa64_sharedlibrary_info_command (char *, int); -static void pa64_solib_sharedlibrary_command PARAMS ((char *, int)); +static void pa64_solib_sharedlibrary_command (char *, int); -static void * pa64_target_read_memory PARAMS ((void *, CORE_ADDR, size_t, int)); +static void *pa64_target_read_memory (void *, CORE_ADDR, size_t, int); -static boolean read_dld_descriptor PARAMS ((struct target_ops *)); +static boolean read_dld_descriptor (struct target_ops *); -static boolean read_dynamic_info PARAMS ((asection *, dld_cache_t *)); +static boolean read_dynamic_info (asection *, dld_cache_t *); -static void add_to_solist PARAMS ((boolean, char *, struct load_module_desc *, - CORE_ADDR, struct target_ops *)); +static void add_to_solist (boolean, char *, struct load_module_desc *, + CORE_ADDR, struct target_ops *); /* When examining the shared library for debugging information we have to look for HP debug symbols, stabs and dwarf2 debug symbols. */ |