diff options
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/target.h b/gdb/target.h index 18ae6e3..9752259 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -900,6 +900,11 @@ struct target_ops non-empty annex. */ int (*to_augmented_libraries_svr4_read) (void); + /* Those unwinders are tried before any other arch unwinders. Use NULL if + it is not used. */ + const struct frame_unwind *to_get_unwinder; + const struct frame_unwind *to_get_tailcall_unwinder; + int to_magic; /* Need sub-structure for target machine related rather than comm related? */ @@ -1791,6 +1796,12 @@ extern char *target_fileio_read_stralloc (const char *filename); extern int target_core_of_thread (ptid_t ptid); +/* See to_get_unwinder in struct target_ops. */ +extern const struct frame_unwind *target_get_unwinder (void); + +/* See to_get_tailcall_unwinder in struct target_ops. */ +extern const struct frame_unwind *target_get_tailcall_unwinder (void); + /* Verify that the memory in the [MEMADDR, MEMADDR+SIZE) range matches the contents of [DATA,DATA+SIZE). Returns 1 if there's a match, 0 if there's a mismatch, and -1 if an error is encountered while |