aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/debug.h
diff options
context:
space:
mode:
authorAlan Hayward <alan.hayward@arm.com>2019-04-12 15:49:11 +0100
committerAlan Hayward <alan.hayward@arm.com>2019-04-17 10:34:24 +0100
commitaeb2e706e1b9c491d20c88c8ead1ae9df9cee04a (patch)
tree1057f29c9095e72c43efa41fe631c7c1f27fff5a /gdb/gdbserver/debug.h
parentc1bc0935a4afb513486dc0a479cd57c0924b677c (diff)
downloadbinutils-aeb2e706e1b9c491d20c88c8ead1ae9df9cee04a.zip
binutils-aeb2e706e1b9c491d20c88c8ead1ae9df9cee04a.tar.gz
binutils-aeb2e706e1b9c491d20c88c8ead1ae9df9cee04a.tar.bz2
gdbserver: Add debug-file option
Add command line option to send all debug output to a given file. Always default back to stderr. Add matching monitor command. Add documentation. gdb/doc/ChangeLog: * gdb.texinfo (Other Command-Line Arguments for gdbserver): Add debug-file option. (Monitor Commands for gdbserver): Likewise. (gdbserver man): Likewise. gdb/gdbserver/ChangeLog: * debug.c (debug_set_output): New function. (debug_vprintf): Send output to debug_file. (debug_flush): Likewise. * debug.h (debug_set_output): New declaration. * server.c (handle_monitor_command): Add debug-file option. (captured_main): Likewise.
Diffstat (limited to 'gdb/gdbserver/debug.h')
-rw-r--r--gdb/gdbserver/debug.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/gdbserver/debug.h b/gdb/gdbserver/debug.h
index c8d5e33..f65c91c 100644
--- a/gdb/gdbserver/debug.h
+++ b/gdb/gdbserver/debug.h
@@ -21,6 +21,11 @@
#if !defined (IN_PROCESS_AGENT)
extern int remote_debug;
+
+/* Switch all debug output to DEBUG_FILE. If DEBUG_FILE is nullptr or an
+ empty string, or if the file cannot be opened, then debug output is sent to
+ stderr. */
+void debug_set_output (const char *debug_file);
#endif
extern int debug_threads;