This is an automated email from Gerrit. Anthony Kolesov ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/1587
-- gerrit commit 7ce0148933fbad5b0ba5f3777e7dc5684c716ed9 Author: Anton Kolesov <[email protected]> Date: Tue Aug 27 13:38:50 2013 +0400 gdb_server: Do not set gdb_con->sync to true for new connections In GDB connected to OpenOCD there is a command "monitor gdb_sync" which makes next stepi command to be ignored while GDB still will get an updated target state. This command sets gdb_connection->sync field to true to notify that stepi should be ignored. This field is set to true for all new connection and is set to false after first "continue" command. However if first resume command is stepi/nexti then it will be ignored and result will confuse GDB client, it will report that target received signal SIGINT. This patch sets this field to false for new connections, thus stepi/nexti will work properly when it is a first resume command. Change-Id: I7c9ebd69c3dc35f3e316041aa99f4e9d3425c0b6 Signed-off-by: Anton Kolesov <[email protected]> diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c index 48015ab..c9b9527 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -906,7 +906,7 @@ static int gdb_new_connection(struct connection *connection) gdb_connection->closed = 0; gdb_connection->busy = 0; gdb_connection->noack_mode = 0; - gdb_connection->sync = true; + gdb_connection->sync = false; gdb_connection->mem_write_error = false; gdb_connection->attached = true; -- ------------------------------------------------------------------------------ Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies and advance your career. Get an incredible 1,500+ hours of step-by-step tutorial videos with LearnDevNow. Subscribe today and save! http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
