diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-10-20 00:44:49 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-10-20 00:44:49 +0000 |
commit | 7ff096288f9754a7bd36cd474584460e57b88d12 (patch) | |
tree | 6bb8200740a6526c03bed489e7eef60609e37684 /gdb/solib.c | |
parent | a0dbbe470a2e45c785def926eb657991d03f1e13 (diff) | |
download | gdb-7ff096288f9754a7bd36cd474584460e57b88d12.zip gdb-7ff096288f9754a7bd36cd474584460e57b88d12.tar.gz gdb-7ff096288f9754a7bd36cd474584460e57b88d12.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index 843a73c..65e98db9 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -195,8 +195,7 @@ static struct so_list *so_list_head; /* List of known shared objects */ #ifndef SVR4_SHARED_LIBS static CORE_ADDR -LM_ADDR (so) - struct so_list *so; +LM_ADDR (struct so_list *so) { #if defined (HAVE_STRUCT_LINK_MAP32) if (bfd_get_arch_size (exec_bfd) == 32) @@ -207,8 +206,7 @@ LM_ADDR (so) } static CORE_ADDR -LM_NEXT (so) - struct so_list *so; +LM_NEXT (struct so_list *so) { #if defined (HAVE_STRUCT_LINK_MAP32) if (bfd_get_arch_size (exec_bfd) == 32) @@ -219,8 +217,7 @@ LM_NEXT (so) } static CORE_ADDR -LM_NAME (so) - struct so_list *so; +LM_NAME (struct so_list *so) { #if defined (HAVE_STRUCT_LINK_MAP32) if (bfd_get_arch_size (exec_bfd) == 32) @@ -231,8 +228,7 @@ LM_NAME (so) } static int -IGNORE_FIRST_LINK_MAP_ENTRY (so) - struct so_list *so; +IGNORE_FIRST_LINK_MAP_ENTRY (struct so_list *so) { return 0; } @@ -240,8 +236,7 @@ IGNORE_FIRST_LINK_MAP_ENTRY (so) #else /* SVR4_SHARED_LIBS */ static CORE_ADDR -LM_ADDR (so) - struct so_list *so; +LM_ADDR (struct so_list *so) { #if defined (HAVE_STRUCT_LINK_MAP32) if (bfd_get_arch_size (exec_bfd) == 32) @@ -252,8 +247,7 @@ LM_ADDR (so) } static CORE_ADDR -LM_NEXT (so) - struct so_list *so; +LM_NEXT (struct so_list *so) { #if defined (HAVE_STRUCT_LINK_MAP32) if (bfd_get_arch_size (exec_bfd) == 32) @@ -264,8 +258,7 @@ LM_NEXT (so) } static CORE_ADDR -LM_NAME (so) - struct so_list *so; +LM_NAME (struct so_list *so) { #if defined (HAVE_STRUCT_LINK_MAP32) if (bfd_get_arch_size (exec_bfd) == 32) @@ -276,8 +269,7 @@ LM_NAME (so) } static int -IGNORE_FIRST_LINK_MAP_ENTRY (so) - struct so_list *so; +IGNORE_FIRST_LINK_MAP_ENTRY (struct so_list *so) { #if defined (HAVE_STRUCT_LINK_MAP32) if (bfd_get_arch_size (exec_bfd) == 32) @@ -1068,7 +1060,7 @@ first_link_map_member (void) SYNOPSIS - void open_symbol_file_object (int from_tty) + void open_symbol_file_object (int *from_tty) DESCRIPTION @@ -1077,11 +1069,13 @@ first_link_map_member (void) name is here, we can open it. Useful when attaching to a process without first loading its symbol file. - */ + If FROM_TTYP dereferences to a non-zero integer, allow messages to + be printed. This parameter is a pointer rather than an int because + open_symbol_file_object() is called via catch_errors() and + catch_errors() requires a pointer argument. */ static int -open_symbol_file_object (from_ttyp) - int *from_ttyp; /* sneak past catch_errors */ +open_symbol_file_object (int *from_ttyp) { CORE_ADDR lm; char *filename; |