mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
* mi/mi-interp.c (mi_new_thread): Quote the thread id.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2008-04-26 Vladimir Prus <vladimir@codesourcery.com>
|
||||||
|
|
||||||
|
* mi/mi-interp.c (mi_new_thread): Quote the thread id.
|
||||||
|
|
||||||
2008-04-26 Joel Brobecker <brobecker@adacore.com>
|
2008-04-26 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
* breakpoint.c (condition_command, commands_from_control_command)
|
* breakpoint.c (condition_command, commands_from_control_command)
|
||||||
|
@ -313,7 +313,7 @@ mi_new_thread (struct thread_info *t)
|
|||||||
{
|
{
|
||||||
struct mi_interp *mi = top_level_interpreter_data ();
|
struct mi_interp *mi = top_level_interpreter_data ();
|
||||||
|
|
||||||
fprintf_unfiltered (mi->event_channel, "thread-created,id=%d", t->num);
|
fprintf_unfiltered (mi->event_channel, "thread-created,id=\"%d\"", t->num);
|
||||||
gdb_flush (mi->event_channel);
|
gdb_flush (mi->event_channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user