diff options
Diffstat (limited to 'gdb/nat/linux-nat.h')
-rw-r--r-- | gdb/nat/linux-nat.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/nat/linux-nat.h b/gdb/nat/linux-nat.h index 51d9ead..7cdaf40 100644 --- a/gdb/nat/linux-nat.h +++ b/gdb/nat/linux-nat.h @@ -21,6 +21,7 @@ #define LINUX_NAT_H struct lwp_info; +struct arch_lwp_info; /* Unlike other extended result codes, WSTOPSIG (status) on PTRACE_O_TRACESYSGOOD syscall events doesn't return SIGTRAP, but @@ -51,6 +52,17 @@ extern struct lwp_info *iterate_over_lwps (ptid_t filter, extern ptid_t ptid_of_lwp (struct lwp_info *lwp); +/* Set the architecture-specific data of LWP. This function must be + provided by the client. */ + +extern void lwp_set_arch_private_info (struct lwp_info *lwp, + struct arch_lwp_info *info); + +/* Return the architecture-specific data of LWP. This function must + be provided by the client. */ + +extern struct arch_lwp_info *lwp_arch_private_info (struct lwp_info *lwp); + /* Return nonzero if LWP is stopped, zero otherwise. This function must be provided by the client. */ |