2005-01-13 Michael Snyder <msnyder@redhat.com>

* breakpoint.c: Whitespace tweaks.
This commit is contained in:
Michael Snyder 2005-01-13 23:35:54 +00:00
parent 4791eb66b6
commit 1272ad1410
2 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,6 @@
2005-01-13 Michael Snyder <msnyder@redhat.com>
* breakpoint.c: Whitespace tweaks.
* cli/cli-interp.c: Tweak comments, per coding standard.
2005-01-13 Andrew Cagney <cagney@gnu.org>

View File

@ -316,7 +316,7 @@ int deprecated_exception_support_initialized = 0;
unloaded. */
#ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
error ("catch of library unloads not yet implemented on this platform")
#endif
@ -4462,7 +4462,8 @@ solib_load_unload_1 (char *hookname, int tempflag, char *dll_pathname,
int thread = -1; /* All threads. */
/* Set a breakpoint on the specified hook. */
sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical, NULL);
sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL,
0, &canonical, NULL);
addr_end = hookname;
if (sals.nelts == 0)
@ -4536,7 +4537,7 @@ void
create_solib_unload_event_breakpoint (char *hookname, int tempflag,
char *dll_pathname, char *cond_string)
{
solib_load_unload_1 (hookname,tempflag, dll_pathname,
solib_load_unload_1 (hookname, tempflag, dll_pathname,
cond_string, bp_catch_unload);
}