diff options
author | Alan Hayward <alan.hayward@arm.com> | 2019-04-12 15:49:11 +0100 |
---|---|---|
committer | Alan Hayward <alan.hayward@arm.com> | 2019-04-17 10:34:24 +0100 |
commit | aeb2e706e1b9c491d20c88c8ead1ae9df9cee04a (patch) | |
tree | 1057f29c9095e72c43efa41fe631c7c1f27fff5a /gdb/gdbserver/debug.h | |
parent | c1bc0935a4afb513486dc0a479cd57c0924b677c (diff) | |
download | binutils-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.h | 5 |
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; |