+2012-04-11 Tristan Gingold <gingold@adacore.com>
+
+ PR gdb/13901
+ * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
+ in case of change.
+
2012-04-11 Tristan Gingold <gingold@adacore.com>
* i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
2012-04-02 Tristan Gingold <gingold@adacore.com>
PR gdb/13901
- * darwin-nat.c (darwin_execvp): Sey binary preference.
+ * darwin-nat.c (darwin_execvp): Set binary preference.
2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
thread->signaled = 1;
}
- /* Set single step. */
- inferior_debug (4, _("darwin_set_sstep (thread=%x, enable=%d)\n"),
- thread->gdb_port, step);
- darwin_set_sstep (thread->gdb_port, step);
- thread->single_step = step;
+ /* Set or reset single step. */
+ if (step != thread->single_step)
+ {
+ inferior_debug (4, _("darwin_set_sstep (thread=%x, enable=%d)\n"),
+ thread->gdb_port, step);
+ darwin_set_sstep (thread->gdb_port, step);
+ thread->single_step = step;
+ }
darwin_send_reply (inf, thread);
thread->msg_state = DARWIN_RUNNING;