From 0f0f20abd295592740a1e764abb976e0db337d86 Mon Sep 17 00:00:00 2001 From: Carmelo Amoroso Date: Thu, 11 Dec 2008 14:45:14 +0000 Subject: [PATCH] Move kernel-features.h header from the linuxthread directory to a common one (libc/sysdeps/linux/common/bits) so that any function can access to supported kernel feature (i.e. getdents). Signed-off-by: Carmelo Amoroso --- .../pthread => libc/sysdeps/linux/common/bits}/kernel-features.h | 0 libc/sysdeps/linux/common/getdents.c | 1 + libpthread/linuxthreads/restart.h | 2 +- libpthread/linuxthreads/sysdeps/i386/i686/pt-machine.h | 2 +- libpthread/linuxthreads/sysdeps/i386/pspinlock.c | 2 +- libpthread/linuxthreads/sysdeps/pthread/getcpuclockid.c | 2 +- libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h | 2 +- libpthread/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S | 2 +- libpthread/linuxthreads/sysdeps/unix/sysv/linux/m68k/vfork.S | 2 +- .../linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S | 2 +- .../linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S | 2 +- libpthread/linuxthreads/sysdeps/unix/sysv/linux/pt-sigsuspend.c | 2 +- 12 files changed, 11 insertions(+), 10 deletions(-) rename {libpthread/linuxthreads/sysdeps/pthread => libc/sysdeps/linux/common/bits}/kernel-features.h (100%) diff --git a/libpthread/linuxthreads/sysdeps/pthread/kernel-features.h b/libc/sysdeps/linux/common/bits/kernel-features.h similarity index 100% rename from libpthread/linuxthreads/sysdeps/pthread/kernel-features.h rename to libc/sysdeps/linux/common/bits/kernel-features.h diff --git a/libc/sysdeps/linux/common/getdents.c b/libc/sysdeps/linux/common/getdents.c index 0baf47eb4..e1aa2a51f 100644 --- a/libc/sysdeps/linux/common/getdents.c +++ b/libc/sysdeps/linux/common/getdents.c @@ -16,6 +16,7 @@ #include #include #include +#include /* With newer versions of linux, the getdents syscall returns d_type * information after the name field. diff --git a/libpthread/linuxthreads/restart.h b/libpthread/linuxthreads/restart.h index f53642eda..694ec48cf 100644 --- a/libpthread/linuxthreads/restart.h +++ b/libpthread/linuxthreads/restart.h @@ -13,7 +13,7 @@ /* GNU Library General Public License for more details. */ #include -#include +#include /* Primitives for controlling thread execution */ diff --git a/libpthread/linuxthreads/sysdeps/i386/i686/pt-machine.h b/libpthread/linuxthreads/sysdeps/i386/i686/pt-machine.h index 222d44a3f..2958c76f0 100644 --- a/libpthread/linuxthreads/sysdeps/i386/i686/pt-machine.h +++ b/libpthread/linuxthreads/sysdeps/i386/i686/pt-machine.h @@ -25,7 +25,7 @@ #ifndef PT_EI # define PT_EI __extern_always_inline #endif -#include "kernel-features.h" +#include #ifndef __ASSEMBLER__ extern long int testandset (int *spinlock); diff --git a/libpthread/linuxthreads/sysdeps/i386/pspinlock.c b/libpthread/linuxthreads/sysdeps/i386/pspinlock.c index c9c62724b..64b59252a 100644 --- a/libpthread/linuxthreads/sysdeps/i386/pspinlock.c +++ b/libpthread/linuxthreads/sysdeps/i386/pspinlock.c @@ -20,7 +20,7 @@ #include #include #include "internals.h" -#include +#include /* This implementation is similar to the one used in the Linux kernel. diff --git a/libpthread/linuxthreads/sysdeps/pthread/getcpuclockid.c b/libpthread/linuxthreads/sysdeps/pthread/getcpuclockid.c index 1c64e6c2b..cefbd554a 100644 --- a/libpthread/linuxthreads/sysdeps/pthread/getcpuclockid.c +++ b/libpthread/linuxthreads/sysdeps/pthread/getcpuclockid.c @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include diff --git a/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h b/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h index e5c577ffb..b957dedc9 100644 --- a/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h +++ b/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h @@ -6,7 +6,7 @@ #include #ifdef IS_IN_libpthread -#include "kernel-features.h" +#include #ifndef __GLIBC_HAVE_LONG_LONG # define __GLIBC_HAVE_LONG_LONG diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S index c7a120d23..78eeabf53 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/i386/vfork.S @@ -20,7 +20,7 @@ #include #define _ERRNO_H 1 #include -#include +#include /* Clone the calling process, but without copying the whole address space. The calling process is suspended until the new process exits or is diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/m68k/vfork.S b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/m68k/vfork.S index 49b8a3c0a..9f304abbe 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/m68k/vfork.S +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/m68k/vfork.S @@ -20,7 +20,7 @@ #include #define _ERRNO_H 1 #include -#include +#include /* Clone the calling process, but without copying the whole address space. The calling process is suspended until the new process exits or is diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S index 724d4cc54..353c7d07f 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S @@ -19,7 +19,7 @@ #include #define _ERRNO_H 1 #include -#include +#include /* Clone the calling process, but without copying the whole address space. The calling process is suspended until the new process exits or is diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S index b408e31b7..7a3cb82c1 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S @@ -19,7 +19,7 @@ #include #define _ERRNO_H 1 #include -#include +#include /* Clone the calling process, but without copying the whole address space. The calling process is suspended until the new process exits or is diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/pt-sigsuspend.c b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/pt-sigsuspend.c index 7c9fe36e2..613980593 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/pt-sigsuspend.c +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/pt-sigsuspend.c @@ -24,7 +24,7 @@ #include #include -#include +#include void __pthread_sigsuspend (const sigset_t *set) -- 2.11.0