From 0d6431e2551df9cc004817a09f19a752b959ec66 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Sat, 16 Aug 2008 23:51:14 +0000 Subject: * gdbthread.h: Add comments. * stack.c (get_selected_block): Return 0 on an exited thread. * top.c (execute_command): Check for is_stopped, not !is_running. * event-top.c (command_handler): Likewise. --- gdb/event-top.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/event-top.c') diff --git a/gdb/event-top.c b/gdb/event-top.c index 722c28e..61c431d 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -518,7 +518,7 @@ command_handler (char *command) /* Do any commands attached to breakpoint we stopped at. Only if we are always running synchronously. Or if we have just executed a command that doesn't start the target. */ - if (!target_can_async_p () || !is_running (inferior_ptid)) + if (!target_can_async_p () || is_stopped (inferior_ptid)) { bpstat_do_actions (&stop_bpstat); do_cleanups (old_chain); -- cgit v1.1