Move ptrace.h to appropriate place.
authorMax Ostapenko <m.ostapenko@partner.samsung.com>
Tue, 24 Nov 2015 12:24:46 +0000 (14:24 +0200)
committerMaxim Ostapenko <chefmax@gcc.gnu.org>
Tue, 24 Nov 2015 12:24:46 +0000 (14:24 +0200)
libsanitizer/

* include/system/linux/asm/ptrace.h: Move to ...
* include/system/asm/ptrace.h: ... this.

From-SVN: r230804

libsanitizer/ChangeLog
libsanitizer/include/system/asm/ptrace.h [new file with mode: 0644]
libsanitizer/include/system/linux/asm/ptrace.h [deleted file]

index c392c57fcac20e9ea063e843ef999a96fa964fa4..895d3bd6db23c7ba4cf671f87aaf6ed501b87bd0 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-24  Maxim Ostapenko  <m.ostapenko@partner.samsung.com>
+
+       * include/system/linux/asm/ptrace.h: Move to ...
+       * include/system/asm/ptrace.h: ... this.
+
 2015-11-24  Maxim Ostapenko  <m.ostapenko@partner.samsung.com>
 
        * include/system/linux/asm/ptrace.h: New header.
diff --git a/libsanitizer/include/system/asm/ptrace.h b/libsanitizer/include/system/asm/ptrace.h
new file mode 100644 (file)
index 0000000..5d2fe9b
--- /dev/null
@@ -0,0 +1,7 @@
+#include_next <asm/ptrace.h>
+/* ARM_VFPREGS_SIZE has been added in 3.0 */
+#if defined(__arm__) && !defined(ARM_VFPREGS_SIZE)
+/* The size of the user-visible VFP state as seen by PTRACE_GET/SETVFPREGS
+   and core dumps.  */
+#define ARM_VFPREGS_SIZE ( 32 * 8 /*fpregs*/ + 4 /*fpscr*/ )
+#endif
diff --git a/libsanitizer/include/system/linux/asm/ptrace.h b/libsanitizer/include/system/linux/asm/ptrace.h
deleted file mode 100644 (file)
index d4249fe..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#include_next <linux/asm/ptrace.h>
-/* ARM_VFPREGS_SIZE has been added in 3.0 */
-#if defined(__arm__) && !defined(ARM_VFPREGS_SIZE)
-/* The size of the user-visible VFP state as seen by PTRACE_GET/SETVFPREGS
-   and core dumps.  */
-#define ARM_VFPREGS_SIZE ( 32 * 8 /*fpregs*/ + 4 /*fpscr*/ )
-#endif