From 2a3750c548de8b4788e0003de0ad2eeb0d7187b8 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Wed, 4 Dec 2002 17:53:26 +0000 Subject: [PATCH] * pa64solib.c: s/boolean/int/. Fixes a build failure on hppa64-hpux. --- gdb/ChangeLog | 4 ++++ gdb/pa64solib.c | 18 +++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 94a9acbd56..6ce60aa7f6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2002-12-04 J. Brobecker + + * pa64solib.c: s/boolean/int/. Fixes a build failure on hppa64-hpux. + 2002-12-04 J. Brobecker * config/pa/tm-hppah.h (PC_IN_SIGTRAMP): Renamed from IN_SIGTRAMP, diff --git a/gdb/pa64solib.c b/gdb/pa64solib.c index fce8fea036..43910dad46 100644 --- a/gdb/pa64solib.c +++ b/gdb/pa64solib.c @@ -80,7 +80,7 @@ struct so_list struct load_module_desc pa64_solib_desc; struct section_table *sections; struct section_table *sections_end; - boolean loaded; + int loaded; }; static struct so_list *so_list_head; @@ -111,8 +111,8 @@ typedef struct CORE_ADDR dld_flags_addr; LONGEST dld_flags; sec_ptr dyninfo_sect; - boolean have_read_dld_descriptor; - boolean is_valid; + int have_read_dld_descriptor; + int is_valid; CORE_ADDR load_map; CORE_ADDR load_map_addr; struct load_module_desc dld_desc; @@ -127,11 +127,11 @@ static void pa64_solib_sharedlibrary_command (char *, int); static void *pa64_target_read_memory (void *, CORE_ADDR, size_t, int); -static boolean read_dld_descriptor (struct target_ops *, int readsyms); +static int read_dld_descriptor (struct target_ops *, int readsyms); -static boolean read_dynamic_info (asection *, dld_cache_t *); +static int read_dynamic_info (asection *, dld_cache_t *); -static void add_to_solist (boolean, char *, int, struct load_module_desc *, +static void add_to_solist (int, char *, int, struct load_module_desc *, CORE_ADDR, struct target_ops *); /* When examining the shared library for debugging information we have to @@ -935,7 +935,7 @@ so_lib_thread_start_addr (struct so_list *so) descriptor. If the library is archive bound, then return zero, else return nonzero. */ -static boolean +static int read_dld_descriptor (struct target_ops *target, int readsyms) { char *dll_path; @@ -1004,7 +1004,7 @@ read_dld_descriptor (struct target_ops *target, int readsyms) which is stored in dld_cache. The routine elf_locate_base in solib.c was used as a model for this. */ -static boolean +static int read_dynamic_info (asection *dyninfo_sect, dld_cache_t *dld_cache_p) { char *buf; @@ -1102,7 +1102,7 @@ pa64_target_read_memory (void *buffer, CORE_ADDR ptr, size_t bufsiz, int ident) be read from the inferior process at the address load_module_desc_addr. */ static void -add_to_solist (boolean from_tty, char *dll_path, int readsyms, +add_to_solist (int from_tty, char *dll_path, int readsyms, struct load_module_desc *load_module_desc_p, CORE_ADDR load_module_desc_addr, struct target_ops *target) { -- 2.34.1