diff options
author | Kevin Buettner <kevinb@redhat.com> | 2008-07-10 19:34:00 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2008-07-10 19:34:00 +0000 |
commit | 0aef6ba222c28ed51ad3c042819bbe1095f00457 (patch) | |
tree | cbe4dc6b17c8fb19a9b2b5b2230958086402a5b1 | |
parent | 0a61c8c283b8f3be8efc3816b84c88bc1962b04d (diff) | |
download | gdb-0aef6ba222c28ed51ad3c042819bbe1095f00457.zip gdb-0aef6ba222c28ed51ad3c042819bbe1095f00457.tar.gz gdb-0aef6ba222c28ed51ad3c042819bbe1095f00457.tar.bz2 |
* remote-sim.c (gdbsim_cntrl_c): Pass remote_sim_ptid to
gdbsim_stop().
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/remote-sim.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0e86f31..064bbe1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-07-10 Kevin Buettner <kevinb@redhat.com> + + * remote-sim.c (gdbsim_cntrl_c): Pass remote_sim_ptid to + gdbsim_stop(). + 2008-07-10 Jan Kratochvil <jan.kratochvil@redhat.com> * NEWS (New commands): Mention "set disable-randomization". diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index df1cf9b..a205a32 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -679,7 +679,7 @@ gdb_os_poll_quit (host_callback *p) static void gdbsim_cntrl_c (int signo) { - gdbsim_stop (); + gdbsim_stop (remote_sim_ptid); } static ptid_t |