mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-10 19:24:29 +00:00
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:
parent
016b743085
commit
d987a26657
@ -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>
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user