diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-05-12 08:33:56 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-05-12 08:33:56 +0000 |
commit | 9af5dcea8f103c6385dc2244dfb654ad7c7e928d (patch) | |
tree | 42882ebb9d6bfb421074dc78fb633ca1ab95b30e /sim/tic80/sim-calls.c | |
parent | c445af5a2b1fd76533a6ce709677e779f215721f (diff) | |
download | gdb-9af5dcea8f103c6385dc2244dfb654ad7c7e928d.zip gdb-9af5dcea8f103c6385dc2244dfb654ad7c7e928d.tar.gz gdb-9af5dcea8f103c6385dc2244dfb654ad7c7e928d.tar.bz2 |
Clear cntrl-c after handling it.
Diffstat (limited to 'sim/tic80/sim-calls.c')
-rw-r--r-- | sim/tic80/sim-calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/tic80/sim-calls.c b/sim/tic80/sim-calls.c index ae3f2ab..3677d8c 100644 --- a/sim/tic80/sim-calls.c +++ b/sim/tic80/sim-calls.c @@ -237,7 +237,7 @@ sim_stop_reason (SIM_DESC sd, enum sim_stop *reason, int *sigrc) { *reason = sim_stopped; *sigrc = SIGINT; - keep_running = 0; + keep_running = 1; } else { |