]> sourceware.org Git - glibc.git/commitdiff
hppa: fix sysdep.h header setup
authorMike Frysinger <vapier@gentoo.org>
Thu, 30 Jul 2015 02:55:43 +0000 (22:55 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 30 Jul 2015 03:09:16 +0000 (23:09 -0400)
The semi-recent SYSCALL_CANCEL inclusion broke hppa due to the sysdep.h
headers not including the unix/sysdep.h headers.  Rework the includes so
we match the other ports:
* hppa/sysdep.h:
- Do not include sys/syscall.h as the unix sysdep.h headers do it.
- Do not include config.h as libc-symbols.h does it, and it has no
#ifdef multiple-include protection, and it breaks when some files
do things like #undef __OPTIMIZE__.
* sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h:
- Drop the generic/sysdep.h as the unix sysdep.h headers include it.
* sysdeps/unix/sysv/linux/hppa/sysdep.h:
- Change to the unix & core hppa sysdep header stacks.
- Undef a few defines that the core headers already set up for us.

sysdeps/hppa/sysdep.h
sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h
sysdeps/unix/sysv/linux/hppa/sysdep.h

index 03fb2a42b315e4f4a2ca10d1564684153e2cb5ce..366b83093f16f96c9536d16675e81f0f206204fd 100644 (file)
@@ -18,8 +18,6 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <sysdeps/generic/sysdep.h>
-#include <sys/syscall.h>
-#include "config.h"
 
 #undef ASM_LINE_SEP
 #define ASM_LINE_SEP !
index 5580e94ffc939eeed4eb4bdcc17faf2e29168a3a..277b721b0a0fd53fbbe844201a9f3343ddec09a1 100644 (file)
@@ -16,7 +16,6 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
-#include <sysdeps/generic/sysdep.h>
 #include <tls.h>
 #ifndef __ASSEMBLER__
 # include <nptl/pthreadP.h>
index 17c8738ada19d1b8e7900081863e0f1f374d98f4..d20a04b8bb562a525f18bdc570281d1089a02562 100644 (file)
    License along with the GNU C Library.  If not, see
    <http://www.gnu.org/licenses/>.  */
 
-#include <asm/unistd.h>
-#include <sysdeps/generic/sysdep.h>
+#ifndef _LINUX_HPPA_SYSDEP_H
+#define _LINUX_HPPA_SYSDEP_H 1
+
+#include <sysdeps/unix/sysdep.h>
+#include <sysdeps/hppa/sysdep.h>
 
 /* Defines RTLD_PRIVATE_ERRNO.  */
 #include <dl-sysdep.h>
    There is currently a bug in gdb which prevents us from specifying
    incomplete stabs information.  Fake some entries here which specify
    the current source file.  */
+#undef ENTRY
 #define        ENTRY(name)                                                     \
        .text                                           ASM_LINE_SEP    \
        .align ALIGNARG(4)                              ASM_LINE_SEP    \
        bv,n 0(2)
 */
 
+#undef PSEUDO
 #define        PSEUDO(name, syscall_name, args)                        \
   ENTRY (name)                                 ASM_LINE_SEP    \
   /* If necc. load args from stack */          ASM_LINE_SEP    \
@@ -483,3 +488,5 @@ L(pre_end):                                 ASM_LINE_SEP    \
 /* Pointer mangling is not yet supported for HPPA.  */
 #define PTR_MANGLE(var) (void) (var)
 #define PTR_DEMANGLE(var) (void) (var)
+
+#endif /* _LINUX_HPPA_SYSDEP_H */
This page took 0.049852 seconds and 5 git commands to generate.