From 9cbc821d4e761ccb7164c704f4299160e72b4d08 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 14 Jan 2005 22:59:36 +0000 Subject: 2005-01-14 Andrew Cagney * exceptions.h (exception_fprintf): Declare. (exception_print): Drop pre_print parameter. * mi/mi-main.c (mi_execute_command): Update exception_print call. * cli/cli-interp.c (safe_execute_command): Update exception_print call. * remote.c (remote_open_1): Instead of passing an error prefix to catch_exceptions, use catch_exceptions and exception_fprintf. (remote_start_remote): Change return type to void. * breakpoint.c (insert_bp_location): Instead of passing an error prefix to catch_exceptions, use catch_exceptions and exception_fprintf. (insert_catchpoint): Change return type to void. (break_command_1): Update exception_print call. * exceptions.c (exception_fprintf): New function. (print_exception): New function. (exception_print): Use print_exception. --- gdb/exceptions.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'gdb/exceptions.h') diff --git a/gdb/exceptions.h b/gdb/exceptions.h index 03318ae..80c120d 100644 --- a/gdb/exceptions.h +++ b/gdb/exceptions.h @@ -67,9 +67,11 @@ struct exception extern const struct exception exception_none; /* If E is an exception, print it's error message on the specified - stream. */ -extern void exception_print (struct ui_file *file, const char *pre_print, - struct exception e); + stream. for _fprintf, prefix the message with PREFIX... */ +extern void exception_print (struct ui_file *file, struct exception e); +extern void exception_fprintf (struct ui_file *file, struct exception e, + const char *prefix, + ...) ATTR_FORMAT (printf, 3, 4); /* Throw an exception (as described by "struct exception"). Will execute a LONG JUMP to the inner most containing exception handler -- cgit v1.1