diff options
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 3d78f74..18c4298 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -43,6 +43,7 @@ #include "regcache.h" #include "solib.h" #include "valprint.h" +#include "gdbthread.h" #include "gdb_assert.h" #include <ctype.h> @@ -1643,6 +1644,9 @@ get_selected_block (CORE_ADDR *addr_in_block) if (!target_has_stack) return 0; + if (is_executing (inferior_ptid)) + return 0; + return get_frame_block (get_selected_frame (NULL), addr_in_block); } |