return frame;
}
+/* Construct a frame ID representing a frame where the stack address
+ exists, but is unavailable. CODE_ADDR is the frame's constant code
+ address (typically the entry point). The special identifier
+ address is set to indicate a wild card. */
+
+static struct frame_id
+frame_id_build_unavailable_stack (CORE_ADDR code_addr)
+{
+ struct frame_id id = null_frame_id;
+
+ id.stack_status = FID_STACK_UNAVAILABLE;
+ id.code_addr = code_addr;
+ id.code_addr_p = 1;
+ return id;
+}
+
/* Compute the frame's uniq ID that can be used to, later, re-find the
frame. */
/* See frame.h. */
-struct frame_id
-frame_id_build_unavailable_stack (CORE_ADDR code_addr)
-{
- struct frame_id id = null_frame_id;
-
- id.stack_status = FID_STACK_UNAVAILABLE;
- id.code_addr = code_addr;
- id.code_addr_p = 1;
- return id;
-}
-
-/* See frame.h. */
-
struct frame_id
frame_id_build_unavailable_stack_special (CORE_ADDR code_addr,
CORE_ADDR special_addr)
CORE_ADDR code_addr,
CORE_ADDR special_addr);
-/* Construct a frame ID representing a frame where the stack address
- exists, but is unavailable. CODE_ADDR is the frame's constant code
- address (typically the entry point). The special identifier
- address is set to indicate a wild card. */
-extern struct frame_id frame_id_build_unavailable_stack (CORE_ADDR code_addr);
-
/* Construct a frame ID representing a frame where the stack address
exists, but is unavailable. CODE_ADDR is the frame's constant code
address (typically the entry point). SPECIAL_ADDR is the special