gdb/gdbserver/
* server.c: (handle_monitor_command): Add a new parameter `own_buf'. (handle_query): Update caller.
This commit is contained in:
parent
a037eb8401
commit
d73f2619de
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2012-02-11 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* server.c: (handle_monitor_command): Add a new parameter
|
||||
`own_buf'.
|
||||
(handle_query): Update caller.
|
||||
|
||||
2012-02-09 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* configure.ac: Add readlink to AC_CHECK_FUNCS list.
|
||||
|
|
|
@ -811,7 +811,7 @@ handle_search_memory (char *own_buf, int packet_len)
|
|||
/* Handle monitor commands not handled by target-specific handlers. */
|
||||
|
||||
static void
|
||||
handle_monitor_command (char *mon)
|
||||
handle_monitor_command (char *mon, char *own_buf)
|
||||
{
|
||||
if (strcmp (mon, "set debug 1") == 0)
|
||||
{
|
||||
|
@ -1737,7 +1737,7 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
|
|||
if (the_target->handle_monitor_command == NULL
|
||||
|| (*the_target->handle_monitor_command) (mon) == 0)
|
||||
/* Default processing. */
|
||||
handle_monitor_command (mon);
|
||||
handle_monitor_command (mon, own_buf);
|
||||
|
||||
free (mon);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue