aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2005-01-14 03:12:43 +0000
committerMichael Snyder <msnyder@vmware.com>2005-01-14 03:12:43 +0000
commit318965d7c18e87768a686ced6ed468a3fd51053d (patch)
treecb0bcacdbc5e34c5be1ddc7df7b4f6b7b28be053
parent79e714b42ab6ca7fb13c3b56218c33268bca6e5a (diff)
downloadbinutils-318965d7c18e87768a686ced6ed468a3fd51053d.zip
binutils-318965d7c18e87768a686ced6ed468a3fd51053d.tar.gz
binutils-318965d7c18e87768a686ced6ed468a3fd51053d.tar.bz2
2005-01-13 Michael Snyder <msnyder@redhat.com>
* somsolib.[ch]: Whitespace tweaks.
-rw-r--r--gdb/somsolib.c10
-rw-r--r--gdb/somsolib.h38
2 files changed, 26 insertions, 22 deletions
diff --git a/gdb/somsolib.c b/gdb/somsolib.c
index 3213176..7883af7 100644
--- a/gdb/somsolib.c
+++ b/gdb/somsolib.c
@@ -1064,8 +1064,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.
*/
void
som_solib_remove_inferior_hook (int pid)
@@ -1117,7 +1117,8 @@ void
som_solib_create_catch_load_hook (int pid, int tempflag, char *filename,
char *cond_string)
{
- create_solib_load_event_breakpoint ("__d_trap", tempflag, filename, cond_string);
+ create_solib_load_event_breakpoint ("__d_trap", tempflag,
+ filename, cond_string);
}
/* This function creates a breakpoint on the dynamic linker hook, which
@@ -1135,7 +1136,8 @@ void
som_solib_create_catch_unload_hook (int pid, int tempflag, char *filename,
char *cond_string)
{
- create_solib_unload_event_breakpoint ("__d_trap", tempflag, filename, cond_string);
+ create_solib_unload_event_breakpoint ("__d_trap", tempflag,
+ filename, cond_string);
}
int
diff --git a/gdb/somsolib.h b/gdb/somsolib.h
index 952718b..d4e56d6 100644
--- a/gdb/somsolib.h
+++ b/gdb/somsolib.h
@@ -43,10 +43,10 @@ extern CORE_ADDR som_solib_get_got_by_pc (CORE_ADDR);
extern int som_solib_section_offsets (struct objfile *,
struct section_offsets *);
-/* 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) som_solib_create_inferior_hook()
@@ -57,7 +57,7 @@ extern void som_solib_create_inferior_hook (void);
(This operation does not remove shared library information from
the debugger, as CLEAR_SOLIB does.)
*/
-#define SOLIB_REMOVE_INFERIOR_HOOK(PID) som_solib_remove_inferior_hook(PID)
+#define SOLIB_REMOVE_INFERIOR_HOOK(PID) som_solib_remove_inferior_hook (PID)
extern void som_solib_remove_inferior_hook (int);
@@ -65,7 +65,7 @@ extern void som_solib_remove_inferior_hook (int);
the debugger to be notified by the dynamic linker when a specified
library file (or any library file, if filename is NULL) is loaded.
*/
-#define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag, filename,cond_string) \
+#define SOLIB_CREATE_CATCH_LOAD_HOOK(pid, tempflag, filename, cond_string) \
som_solib_create_catch_load_hook (pid, tempflag, filename, cond_string)
extern void som_solib_create_catch_load_hook (int, int, char *, char *);
@@ -74,7 +74,7 @@ extern void som_solib_create_catch_load_hook (int, int, char *, char *);
the debugger to be notified by the dynamic linker when a specified
library file (or any library file, if filename is NULL) is unloaded.
*/
-#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename, cond_string) \
+#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
som_solib_create_catch_unload_hook (pid, tempflag, filename, cond_string)
extern void som_solib_create_catch_unload_hook (int, int, char *, char *);
@@ -96,10 +96,11 @@ extern int som_solib_have_load_event (int);
This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
or undefined results are guaranteed.
- This string's contents are only valid immediately after the inferior
- has stopped in the dynamic linker hook, and becomes invalid as soon
- as the inferior is continued. Clients should make a copy of this
- string if they wish to continue the inferior and then access the string.
+ This string's contents are only valid immediately after the
+ inferior has stopped in the dynamic linker hook, and becomes
+ invalid as soon as the inferior is continued. Clients should make
+ a copy of this string if they wish to continue the inferior and
+ then access the string.
*/
#define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \
som_solib_loaded_library_pathname (pid)
@@ -123,10 +124,11 @@ extern int som_solib_have_unload_event (int);
This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is TRUE,
or undefined results are guaranteed.
- This string's contents are only valid immediately after the inferior
- has stopped in the dynamic linker hook, and becomes invalid as soon
- as the inferior is continued. Clients should make a copy of this
- string if they wish to continue the inferior and then access the string.
+ This string's contents are only valid immediately after the
+ inferior has stopped in the dynamic linker hook, and becomes
+ invalid as soon as the inferior is continued. Clients should make
+ a copy of this string if they wish to continue the inferior and
+ then access the string.
*/
#define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \
som_solib_unloaded_library_pathname (pid)
@@ -137,9 +139,9 @@ extern char *som_solib_unloaded_library_pathname (int);
lies within the dynamic linker (such as the event hook, or the dld
itself).
- This function must be used only when a dynamic linker event has been
- caught, and the inferior is being stepped out of the hook, or undefined
- results are guaranteed.
+ This function must be used only when a dynamic linker event has
+ been caught, and the inferior is being stepped out of the hook, or
+ undefined results are guaranteed.
*/
#define SOLIB_IN_DYNAMIC_LINKER(pid,pc) \
som_solib_in_dynamic_linker (pid, pc)