diff options
Diffstat (limited to 'gdb/remote-z8k.c')
-rw-r--r-- | gdb/remote-z8k.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/remote-z8k.c b/gdb/remote-z8k.c index 9dea12f..5ff6e82 100644 --- a/gdb/remote-z8k.c +++ b/gdb/remote-z8k.c @@ -209,6 +209,7 @@ sim_detach (args, from_tty) /* Wait until the remote machine stops, then return, storing status in STATUS just as `wait' would. */ #if 0 +/* See remote-sim.c for how this is done now. */ int sim_wait (pid, status) int pid; @@ -316,9 +317,9 @@ static void rem_resume (pid, a, b) int pid; int a; - int b; + enum target_signal siggnal; { - sim_resume (a, b); + sim_resume (a, target_signal_to_host (siggnal)); } |