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.
This commit is contained in:
Tristan Gingold 2012-04-11 13:17:05 +00:00
parent 016b743085
commit d987a26657
2 changed files with 15 additions and 6 deletions

View File

@ -1,3 +1,9 @@
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
@ -235,7 +241,7 @@
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>

View File

@ -705,11 +705,14 @@ darwin_resume_thread (struct inferior *inf, darwin_thread_t *thread,
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;