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 /gdb/remote-sim.c | |
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().
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |