mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-01 06:14:47 +08:00
gdb/gdbserver/
* server.c: (handle_monitor_command): Add a new parameter `own_buf'. (handle_query): Update caller.
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user