aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/linux/Ptrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/linux/Ptrace.h')
-rw-r--r--include/lldb/Host/linux/Ptrace.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/lldb/Host/linux/Ptrace.h b/include/lldb/Host/linux/Ptrace.h
index 731e435da0db..1b753c284967 100644
--- a/include/lldb/Host/linux/Ptrace.h
+++ b/include/lldb/Host/linux/Ptrace.h
@@ -22,36 +22,36 @@ typedef int __ptrace_request;
// Support ptrace extensions even when compiled without required kernel support
#ifndef PTRACE_GETREGS
- #define PTRACE_GETREGS 12
+#define PTRACE_GETREGS 12
#endif
#ifndef PTRACE_SETREGS
- #define PTRACE_SETREGS 13
+#define PTRACE_SETREGS 13
#endif
#ifndef PTRACE_GETFPREGS
- #define PTRACE_GETFPREGS 14
+#define PTRACE_GETFPREGS 14
#endif
#ifndef PTRACE_SETFPREGS
- #define PTRACE_SETFPREGS 15
+#define PTRACE_SETFPREGS 15
#endif
#ifndef PTRACE_GETREGSET
- #define PTRACE_GETREGSET 0x4204
+#define PTRACE_GETREGSET 0x4204
#endif
#ifndef PTRACE_SETREGSET
- #define PTRACE_SETREGSET 0x4205
+#define PTRACE_SETREGSET 0x4205
#endif
#ifndef PTRACE_GET_THREAD_AREA
- #define PTRACE_GET_THREAD_AREA 25
+#define PTRACE_GET_THREAD_AREA 25
#endif
#ifndef PTRACE_ARCH_PRCTL
- #define PTRACE_ARCH_PRCTL 30
+#define PTRACE_ARCH_PRCTL 30
#endif
#ifndef ARCH_GET_FS
- #define ARCH_SET_GS 0x1001
- #define ARCH_SET_FS 0x1002
- #define ARCH_GET_FS 0x1003
- #define ARCH_GET_GS 0x1004
+#define ARCH_SET_GS 0x1001
+#define ARCH_SET_FS 0x1002
+#define ARCH_GET_FS 0x1003
+#define ARCH_GET_GS 0x1004
#endif
-#define LLDB_PTRACE_NT_ARM_TLS 0x401 // ARM TLS register
+#define LLDB_PTRACE_NT_ARM_TLS 0x401 // ARM TLS register
#endif // liblldb_Host_linux_Ptrace_h_