From 423a48075e748691f7fa83dbae404da3e4edc914 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 18 Dec 2013 14:35:15 -0700 Subject: convert to_kill 2014-02-19 Tom Tromey * target-delegates.c: Rebuild. * target.c (target_kill): Unconditionally delegate. * target.h (struct target_ops) : Use TARGET_DEFAULT_NORETURN. --- gdb/target.c | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'gdb/target.c') diff --git a/gdb/target.c b/gdb/target.c index 8306906..3d27eda 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -452,19 +452,10 @@ target_ignore (void) void target_kill (void) { - struct target_ops *t; - - for (t = current_target.beneath; t != NULL; t = t->beneath) - if (t->to_kill != NULL) - { - if (targetdebug) - fprintf_unfiltered (gdb_stdlog, "target_kill ()\n"); - - t->to_kill (t); - return; - } + if (targetdebug) + fprintf_unfiltered (gdb_stdlog, "target_kill ()\n"); - noprocess (); + current_target.to_kill (¤t_target); } void -- cgit v1.1