2005-01-13 Michael Snyder <msnyder@redhat.com>
authorMichael Snyder <msnyder@vmware.com>
Fri, 14 Jan 2005 02:04:02 +0000 (02:04 +0000)
committerMichael Snyder <msnyder@vmware.com>
Fri, 14 Jan 2005 02:04:02 +0000 (02:04 +0000)
* solib-aix.c: Whitespace tweaks.
* solib.c: Whitespace tweaks.
* solib-frv.c: Whitespace tweaks.
* solib.h: Whitespace tweaks.
* solib-irix.c: Whitespace tweaks.
* solib-som.c: Whitespace tweaks.
* solib-sunos.c: Whitespace tweaks.
* solib-svr4.[ch]: Whitespace tweaks.

gdb/ChangeLog
gdb/solib-aix5.c
gdb/solib-frv.c
gdb/solib-irix.c
gdb/solib-som.c
gdb/solib-sunos.c
gdb/solib-svr4.c
gdb/solib-svr4.h
gdb/solib.c
gdb/solib.h

index 356933f..f37eed9 100644 (file)
 
 2005-01-13  Michael Snyder  <msnyder@redhat.com>
 
+       * solib-aix.c: Whitespace tweaks.
+       * solib.c: Whitespace tweaks.
+       * solib-frv.c: Whitespace tweaks.
+       * solib.h: Whitespace tweaks.
+       * solib-irix.c: Whitespace tweaks.
+       * solib-som.c: Whitespace tweaks.
+       * solib-sunos.c: Whitespace tweaks.
+       * solib-svr4.[ch]: Whitespace tweaks.
        * ser-tcp.c: Whitespace tweaks.
        * ser-unix.c: Whitespace tweaks.
        * serial.h: Whitespace tweaks.
index 54b1199..3532be4 100644 (file)
@@ -771,7 +771,7 @@ aix5_relocate_main_executable (void)
 
    SYNOPSIS
 
-   void aix5_solib_create_inferior_hook()
+   void aix5_solib_create_inferior_hook ()
 
    DESCRIPTION
 
index cd3fc8d..a102573 100644 (file)
@@ -917,7 +917,7 @@ frv_relocate_main_executable (void)
 
    SYNOPSIS
 
-   void frv_solib_create_inferior_hook()
+   void frv_solib_create_inferior_hook ()
 
    DESCRIPTION
 
index 5795eca..f84a54a 100644 (file)
@@ -371,7 +371,7 @@ enable_break (void)
 
    SYNOPSIS
 
-   void solib_create_inferior_hook()
+   void solib_create_inferior_hook ()
 
    DESCRIPTION
 
index 886eb4b..758bc3c 100644 (file)
@@ -322,8 +322,8 @@ keep_going:
    shared library events.  To resume notifications, GDB must call
    som_solib_create_inferior_hook.
 
-   This operation does not remove any knowledge of shared libraries which
-   GDB may already have been notified of.
+   This operation does not remove any knowledge of shared libraries
+   of which GDB may already have been notified.
  */
 static void
 som_solib_remove_inferior_hook (int pid)
index 5237636..b9aad55 100644 (file)
@@ -695,7 +695,7 @@ sunos_special_symbol_handling (void)
 
    SYNOPSIS
 
-   void sunos_solib_create_inferior_hook()
+   void sunos_solib_create_inferior_hook ()
 
    DESCRIPTION
 
index 7976e67..3c6a992 100644 (file)
@@ -56,9 +56,9 @@ static struct gdbarch_data *fetch_link_map_offsets_gdbarch_data;
 
 /* legacy_svr4_fetch_link_map_offsets_hook is a pointer to a function
    which is used to fetch link map offsets.  It will only be set
-   by solib-legacy.c, if at all. */
+   by solib-legacy.c, if at all.  */
 
-struct link_map_offsets *(*legacy_svr4_fetch_link_map_offsets_hook)(void) = 0;
+struct link_map_offsets *(*legacy_svr4_fetch_link_map_offsets_hook) (void) = 0;
 
 /* Link map info to include in an allocated so_list entry */
 
@@ -1155,7 +1155,7 @@ svr4_relocate_main_executable (void)
 
    SYNOPSIS
 
-   void svr4_solib_create_inferior_hook()
+   void svr4_solib_create_inferior_hook ()
 
    DESCRIPTION
 
index 0909e4c..993b6a3 100644 (file)
@@ -84,8 +84,8 @@ extern CORE_ADDR svr4_fetch_objfile_link_map (struct objfile *objfile);
 
 /* legacy_svr4_fetch_link_map_offsets_hook is a pointer to a function
    which is used to fetch link map offsets.  It will only be set
-   by solib-legacy.c, if at all. */
-extern struct link_map_offsets *(*legacy_svr4_fetch_link_map_offsets_hook)(void);
+   by solib-legacy.c, if at all.  */
+extern struct link_map_offsets *(*legacy_svr4_fetch_link_map_offsets_hook) (void);
 
 /* Fetch (and possibly build) an appropriate `struct link_map_offsets'
    for ILP32 and LP64 SVR4 systems.  */
index aeb92af..3efe575 100644 (file)
@@ -801,7 +801,7 @@ do_clear_solib (void *dummy)
 
    SYNOPSIS
 
-   void solib_create_inferior_hook()
+   void solib_create_inferior_hook ()
 
    DESCRIPTION
 
index 503e3c2..8fadf4e 100644 (file)
@@ -42,12 +42,12 @@ extern void clear_solib (void);
 extern void solib_add (char *, int, struct target_ops *, int);
 extern int solib_read_symbols (struct so_list *, int);
 
-/* Function to be called when the inferior starts up, to discover the names
-   of shared libraries that are dynamically linked, the base addresses to
-   which they are linked, and sufficient information to read in their symbols
-   at a later time. */
+/* Function to be called when the inferior starts up, to discover the
+   names of shared libraries that are dynamically linked, the base
+   addresses to which they are linked, and sufficient information to
+   read in their symbols at a later time.  */
 
-#define SOLIB_CREATE_INFERIOR_HOOK(PID)        solib_create_inferior_hook()
+#define SOLIB_CREATE_INFERIOR_HOOK(PID)        solib_create_inferior_hook ()
 
 /* Function to be called to remove the connection between debugger and
    dynamic linker that was established by SOLIB_CREATE_INFERIOR_HOOK.