aboutsummaryrefslogtreecommitdiff
path: root/gdb/nat/i386-linux.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/nat/i386-linux.h')
-rw-r--r--gdb/nat/i386-linux.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/gdb/nat/i386-linux.h b/gdb/nat/i386-linux.h
new file mode 100644
index 0000000..c93626b
--- /dev/null
+++ b/gdb/nat/i386-linux.h
@@ -0,0 +1,37 @@
+/* Native-dependent code for GNU/Linux i386.
+
+ Copyright (C) 2024 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef NAT_I386_LINUX_H
+#define NAT_I386_LINUX_H
+
+/* Does the current host support the GETFPXREGS request? The system header
+ file may or may not define it, but even if it is defined, the kernel
+ will return EIO if it's running on a pre-SSE processor.
+
+ Initially this will be TRIBOOL_UNKNOWN and should be changed to
+ TRIBOOL_FALSE if the ptrace call is attempted and fails or changed to
+ TRIBOOL_TRUE if the ptrace call is attempted and succeeds.
+
+ My instinct is to attach this to some architecture- or target-specific
+ data structure, but really, a particular GDB process can only run on top
+ of one kernel at a time. So it's okay - for this to be a global
+ variable. */
+extern tribool have_ptrace_getfpxregs;
+
+#endif /* NAT_I386_LINUX_H */