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.
This commit is contained in:
Michael Snyder 2005-01-14 02:04:02 +00:00
parent 2c1ab59266
commit 7095b86368
10 changed files with 25 additions and 17 deletions

View File

@ -20,6 +20,14 @@
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.

View File

@ -771,7 +771,7 @@ aix5_relocate_main_executable (void)
SYNOPSIS
void aix5_solib_create_inferior_hook()
void aix5_solib_create_inferior_hook ()
DESCRIPTION

View File

@ -917,7 +917,7 @@ frv_relocate_main_executable (void)
SYNOPSIS
void frv_solib_create_inferior_hook()
void frv_solib_create_inferior_hook ()
DESCRIPTION

View File

@ -371,7 +371,7 @@ enable_break (void)
SYNOPSIS
void solib_create_inferior_hook()
void solib_create_inferior_hook ()
DESCRIPTION

View 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)

View File

@ -695,7 +695,7 @@ sunos_special_symbol_handling (void)
SYNOPSIS
void sunos_solib_create_inferior_hook()
void sunos_solib_create_inferior_hook ()
DESCRIPTION

View 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

View 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. */

View File

@ -801,7 +801,7 @@ do_clear_solib (void *dummy)
SYNOPSIS
void solib_create_inferior_hook()
void solib_create_inferior_hook ()
DESCRIPTION

View 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.