* 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.
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.
SYNOPSIS
- void aix5_solib_create_inferior_hook()
+ void aix5_solib_create_inferior_hook ()
DESCRIPTION
SYNOPSIS
- void frv_solib_create_inferior_hook()
+ void frv_solib_create_inferior_hook ()
DESCRIPTION
SYNOPSIS
- void solib_create_inferior_hook()
+ void solib_create_inferior_hook ()
DESCRIPTION
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)
SYNOPSIS
- void sunos_solib_create_inferior_hook()
+ void sunos_solib_create_inferior_hook ()
DESCRIPTION
/* 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 */
SYNOPSIS
- void svr4_solib_create_inferior_hook()
+ void svr4_solib_create_inferior_hook ()
DESCRIPTION
/* 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. */
SYNOPSIS
- void solib_create_inferior_hook()
+ void solib_create_inferior_hook ()
DESCRIPTION
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.