diff options
author | Pedro Alves <palves@redhat.com> | 2007-03-27 22:46:08 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2007-03-27 22:46:08 +0000 |
commit | bce7165daae97585d93ac28361576feebcc80721 (patch) | |
tree | e013956ff7fd98a7fd6eacc40a0f6eac04eb7b23 /gdb/gdbserver/server.h | |
parent | 831480e9428ae7d8001abe6967d027fb7f0e080a (diff) | |
download | gdb-bce7165daae97585d93ac28361576feebcc80721.zip gdb-bce7165daae97585d93ac28361576feebcc80721.tar.gz gdb-bce7165daae97585d93ac28361576feebcc80721.tar.bz2 |
* remote-utils.c (monitor_output): Constify msg parameter.
* server.h (monitor_output): Likewise.
* win32-i386-low.c (handle_output_debug_string): New.
(win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
handle_output_debug_string.
(get_child_debug_event): Likewise.
Diffstat (limited to 'gdb/gdbserver/server.h')
-rw-r--r-- | gdb/gdbserver/server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h index 462bd68..df67615 100644 --- a/gdb/gdbserver/server.h +++ b/gdb/gdbserver/server.h @@ -172,7 +172,7 @@ int remote_escape_output (const gdb_byte *buffer, int len, int look_up_one_symbol (const char *name, CORE_ADDR *addrp); -void monitor_output (char *msg); +void monitor_output (const char *msg); /* Functions from ``signals.c''. */ enum target_signal target_signal_from_host (int hostsig); |