From 916dde5d38b45a659514e47942ece70aec04cd78 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 26 Aug 2008 17:40:24 +0000 Subject: * dummy-frame.h (dummy_frame_pop): Add prototype. * dummy-frame.c: Include "observer.h". (dummy_frame_push): Do not check for stale frames. (dummy_frame_pop): New function. (cleanup_dummy_frames): New function. (_initialize_dummy_frame): Install it as inferior_created observer. * frame.h (struct frame_id): Update comments. (frame_id_inner): Remove prototype. * frame.c (frame_id_inner): Make static. Add comments. (frame_find_by_id): Update frame_id_inner safety net check to avoid false positives for targets using non-contiguous stack ranges. (get_prev_frame_1): Update frame_id_inner safety net check. (frame_pop): Call dummy_frame_pop when popping a dummy frame. * stack.c (return_command): Directly pop the selected frame. * infrun.c (handle_inferior_event): Remove dead code. * i386-tdep.c (i386_push_dummy_call): Update comment. --- gdb/dummy-frame.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gdb/dummy-frame.h') diff --git a/gdb/dummy-frame.h b/gdb/dummy-frame.h index b299b6dd9c8..f7e05e6a1f4 100644 --- a/gdb/dummy-frame.h +++ b/gdb/dummy-frame.h @@ -41,6 +41,8 @@ struct frame_id; extern void dummy_frame_push (struct regcache *regcache, const struct frame_id *dummy_id); +extern void dummy_frame_pop (struct frame_id dummy_id); + /* If the PC falls in a dummy frame, return a dummy frame unwinder. */ -- cgit v1.2.1