This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[PATCH RFC] Protoize solib.c


More protoization...

	* solib.c (LM_ADDR, LM_NEXT, LM_NAME, IGNORE_FIRST_LINK_MAP_ENTRY,
	open_symbol_file_object): Protoize.

Index: solib.c
===================================================================
RCS file: /cvs/src/src/gdb/solib.c,v
retrieving revision 1.22
diff -u -r1.22 solib.c
--- solib.c	2000/08/31 00:39:10	1.22
+++ solib.c	2000/10/18 03:56:24
@@ -195,8 +195,7 @@
 #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 @@
 }
 
 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 @@
 }
 
 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 @@
 }
 
 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 @@
 #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 @@
 }
 
 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 @@
 }
 
 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 @@
 }
 
 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 @@
 
   SYNOPSIS
 
-  void open_symbol_file_object (int from_tty)
+  void open_symbol_file_object (int *from_tty)
 
   DESCRIPTION
 
@@ -1077,11 +1069,13 @@
   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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]