Use regcache->tdesc instead of arm_hwcap
[deliverable/binutils-gdb.git] / gdb / linux-nat.h
index d935270847dd9cd9d47ce62c811f61c494f4c9f1..cae263a6d6f3a382ebf44cb303b1c2df1b891af5 100644 (file)
@@ -115,6 +115,10 @@ struct lwp_info
    native target is active.  */
 extern struct lwp_info *lwp_list;
 
+/* Does the current host support PTRACE_GETREGSET?  */
+enum tribool { TRIBOOL_UNKNOWN = -1, TRIBOOL_FALSE = 0, TRIBOOL_TRUE = 1 };
+extern enum tribool have_ptrace_getregset;
+
 /* Iterate over each active thread (light-weight process).  */
 #define ALL_LWPS(LP)                                                   \
   for ((LP) = lwp_list;                                                        \
This page took 0.056956 seconds and 4 git commands to generate.