X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Flinux-nat.c;h=b75153ce983f2bc16f5e592bde8f408313a97018;hb=f42bf748e417cf9120fc57d144b6eaaf3adda247;hp=0829bcb5072c7ff6177cb10dee47b8741ede4d34;hpb=e7ad2f145c05bc60b1cd2796c8f3b72f02e3e730;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 0829bcb507..b75153ce98 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -4462,15 +4462,6 @@ linux_nat_stop (struct target_ops *self, ptid_t ptid) iterate_over_lwps (ptid, linux_nat_stop_lwp, NULL); } -static void -linux_nat_interrupt (struct target_ops *self, ptid_t ptid) -{ - if (non_stop) - iterate_over_lwps (ptid, linux_nat_stop_lwp, NULL); - else - linux_ops->to_interrupt (linux_ops, ptid); -} - static void linux_nat_close (struct target_ops *self) { @@ -4672,7 +4663,6 @@ linux_nat_add_target (struct target_ops *t) t->to_close = linux_nat_close; t->to_stop = linux_nat_stop; - t->to_interrupt = linux_nat_interrupt; t->to_supports_multi_process = linux_nat_supports_multi_process;