From 6d68593763aab1de17c688ad549d75573ff8168b Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Wed, 12 Mar 1997 12:27:30 +0000 Subject: [PATCH] Extend callback interface to support vprintf, flush and error printing. Corresponding change for gdb directory can be checked in later. --- include/callback.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/callback.h b/include/callback.h index 8968ce2..dad6391 100644 --- a/include/callback.h +++ b/include/callback.h @@ -20,17 +20,25 @@ struct host_callback_struct int (*unlink) PARAMS ((host_callback *, const char *)); int (*write) PARAMS ((host_callback *,int, const char *, int)); int (*write_stdout) PARAMS ((host_callback *, const char *, int)); + void (*flush_stdout) PARAMS ((host_callback *)); + int (*write_stderr) PARAMS ((host_callback *, const char *, int)); + void (*flush_stderr) PARAMS ((host_callback *)); /* Used when the target has gone away, so we can close open handles and free memory etc etc. */ int (*shutdown) PARAMS ((host_callback *)); int (*init) PARAMS ((host_callback *)); - /* Talk to the user on a console. */ + /* depreciated, use vprintf_filtered - Talk to the user on a console. */ void (*printf_filtered) PARAMS ((host_callback *, const char *, ...)); + + /* Talk to the user on a console. */ + void (*vprintf_filtered) PARAMS ((host_callback *, const char *, void *)); + /* Print an error message and "exit". In the case of gdb "exiting" means doing a longjmp back to the main command loop. */ + void (*evprintf_filtered) PARAMS ((host_callback *, const char *, void *)); void (*error) PARAMS ((host_callback *, const char *, ...)); int last_errno; /* host format */ -- 2.7.4