gdb/gdbserver/

* server.c: (handle_monitor_command): Add a new parameter
	`own_buf'.
	(handle_query): Update caller.
This commit is contained in:
Yao Qi
2012-02-11 13:36:41 +00:00
parent a037eb8401
commit d73f2619de
2 changed files with 8 additions and 2 deletions
gdb/gdbserver

@ -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> 2012-02-09 Joel Brobecker <brobecker@adacore.com>
* configure.ac: Add readlink to AC_CHECK_FUNCS list. * 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. */ /* Handle monitor commands not handled by target-specific handlers. */
static void static void
handle_monitor_command (char *mon) handle_monitor_command (char *mon, char *own_buf)
{ {
if (strcmp (mon, "set debug 1") == 0) 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 if (the_target->handle_monitor_command == NULL
|| (*the_target->handle_monitor_command) (mon) == 0) || (*the_target->handle_monitor_command) (mon) == 0)
/* Default processing. */ /* Default processing. */
handle_monitor_command (mon); handle_monitor_command (mon, own_buf);
free (mon); free (mon);
return; return;