diff options
Diffstat (limited to 'gdb/gdbserver/spu-low.c')
-rw-r--r-- | gdb/gdbserver/spu-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/spu-low.c b/gdb/gdbserver/spu-low.c index 2ca9159..a110a0e 100644 --- a/gdb/gdbserver/spu-low.c +++ b/gdb/gdbserver/spu-low.c @@ -636,7 +636,7 @@ spu_request_interrupt (void) { struct thread_info *thr = get_first_thread (); - syscall (SYS_tkill, ptid_get_lwp (thr), SIGINT); + syscall (SYS_tkill, lwpid_of (thr), SIGINT); } static struct target_ops spu_target_ops = { |