svn commit: branches/uClibc-nptl: ldso/include libc/sysdeps/linux/common l etc...
carmelo at uclibc.org
carmelo at uclibc.org
Thu Dec 11 15:40:56 UTC 2008
Author: carmelo
Date: 2008-12-11 07:40:55 -0800 (Thu, 11 Dec 2008)
New Revision: 24385
Log:
Fix kernl-features.h include path.
Signed-off-by: Carmelo Amoroso <carmelo.amoroso at st.com>
Modified:
branches/uClibc-nptl/ldso/include/ldsodefs.h
branches/uClibc-nptl/libc/sysdeps/linux/common/getdents.c
branches/uClibc-nptl/libc/sysdeps/linux/common/sys/ptrace.h
branches/uClibc-nptl/libpthread/nptl/pthread_cancel.c
branches/uClibc-nptl/libpthread/nptl/pthread_condattr_setclock.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/createthread.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pt-raise.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_kill.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/raise.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_create.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_delete.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_gettime.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_settime.c
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S
branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S
branches/uClibc-nptl/librt/clock_getcpuclockid.c
branches/uClibc-nptl/librt/clock_gettime.c
branches/uClibc-nptl/librt/clock_nanosleep.c
Changeset:
Modified: branches/uClibc-nptl/ldso/include/ldsodefs.h
===================================================================
--- branches/uClibc-nptl/ldso/include/ldsodefs.h 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/ldso/include/ldsodefs.h 2008-12-11 15:40:55 UTC (rev 24385)
@@ -1,7 +1,7 @@
#ifndef _LDSODEFS_H
#define _LDSODEFS_H 1
-#include "kernel-features.h"
+#include <bits/kernel-features.h>
#include <features.h>
#include <tls.h>
Modified: branches/uClibc-nptl/libc/sysdeps/linux/common/getdents.c
===================================================================
--- branches/uClibc-nptl/libc/sysdeps/linux/common/getdents.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libc/sysdeps/linux/common/getdents.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -16,6 +16,7 @@
#include <sys/types.h>
#include <sys/syscall.h>
#include <bits/kernel_types.h>
+#include <bits/kernel-features.h>
/* With newer versions of linux, the getdents syscall returns d_type
* information after the name field.
Modified: branches/uClibc-nptl/libc/sysdeps/linux/common/sys/ptrace.h
===================================================================
--- branches/uClibc-nptl/libc/sysdeps/linux/common/sys/ptrace.h 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libc/sysdeps/linux/common/sys/ptrace.h 2008-12-11 15:40:55 UTC (rev 24385)
@@ -1,5 +1,5 @@
/* `ptrace' debugger support interface. Linux version.
- Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1996-1999,2000,2006,2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -109,10 +109,49 @@
#define PT_SETFPXREGS PTRACE_SETFPXREGS
/* Continue and stop at the next (return from) syscall. */
- PTRACE_SYSCALL = 24
+ PTRACE_SYSCALL = 24,
#define PT_SYSCALL PTRACE_SYSCALL
+
+ /* Set ptrace filter options. */
+ PTRACE_SETOPTIONS = 0x4200,
+#define PT_SETOPTIONS PTRACE_SETOPTIONS
+
+ /* Get last ptrace message. */
+ PTRACE_GETEVENTMSG = 0x4201,
+#define PT_GETEVENTMSG PTRACE_GETEVENTMSG
+
+ /* Get siginfo for process. */
+ PTRACE_GETSIGINFO = 0x4202,
+#define PT_GETSIGINFO PTRACE_GETSIGINFO
+
+ /* Set new siginfo for process. */
+ PTRACE_SETSIGINFO = 0x4203
+#define PT_SETSIGINFO PTRACE_SETSIGINFO
};
+
+/* Options set using PTRACE_SETOPTIONS. */
+enum __ptrace_setoptions {
+ PTRACE_O_TRACESYSGOOD = 0x00000001,
+ PTRACE_O_TRACEFORK = 0x00000002,
+ PTRACE_O_TRACEVFORK = 0x00000004,
+ PTRACE_O_TRACECLONE = 0x00000008,
+ PTRACE_O_TRACEEXEC = 0x00000010,
+ PTRACE_O_TRACEVFORKDONE = 0x00000020,
+ PTRACE_O_TRACEEXIT = 0x00000040,
+ PTRACE_O_MASK = 0x0000007f
+};
+
+/* Wait extended result codes for the above trace options. */
+enum __ptrace_eventcodes {
+ PTRACE_EVENT_FORK = 1,
+ PTRACE_EVENT_VFORK = 2,
+ PTRACE_EVENT_CLONE = 3,
+ PTRACE_EVENT_EXEC = 4,
+ PTRACE_EVENT_VFORK_DONE = 5,
+ PTRACE_EVENT_EXIT = 6
+};
+
/* Perform process tracing functions. REQUEST is one of the values
above, and determines the action to be taken.
For all requests except PTRACE_TRACEME, PID specifies the process to be
Modified: branches/uClibc-nptl/libpthread/nptl/pthread_cancel.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/pthread_cancel.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/pthread_cancel.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -22,7 +22,7 @@
#include "pthreadP.h"
#include "atomic.h"
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
int
Modified: branches/uClibc-nptl/libpthread/nptl/pthread_condattr_setclock.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/pthread_condattr_setclock.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/pthread_condattr_setclock.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -23,7 +23,7 @@
#include <time.h>
#include <sysdep.h>
#include "pthreadP.h"
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
int
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/createthread.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/createthread.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/createthread.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -25,7 +25,7 @@
#include <ldsodefs.h>
#include <tls.h>
-#include "kernel-features.h"
+#include <bits/kernel-features.h>
#define CLONE_SIGNAL (CLONE_SIGHAND | CLONE_THREAD)
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -23,7 +23,7 @@
#include <lowlevellock.h>
#include <pthread.h>
#include <pthreadP.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
int
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -23,7 +23,7 @@
#include <lowlevellock.h>
#include <pthread.h>
#include <pthreadP.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
int
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#include <shlib-compat.h>
#include <lowlevelcond.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#ifdef UP
# define LOCK
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#include <shlib-compat.h>
#include <lowlevelcond.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#ifdef UP
# define LOCK
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#define _ERRNO_H 1
#include <bits/errno.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <tcb-offsets.h>
/* Save the PID value. */
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#define _ERRNO_H 1
#include <bits/errno.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <tcb-offsets.h>
/* Clone the calling process, but without copying the whole address space.
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#define _ERRNO_H 1
#include <bits/errno.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <tcb-offsets.h>
/* Clone the calling process, but without copying the whole address space.
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#define _ERRNO_H 1
#include <bits/errno.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <tcb-offsets.h>
/* Clone the calling process, but without copying the whole address space.
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#define _ERRNO_H 1
#include <bits/errno.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <tcb-offsets.h>
/* Clone the calling process, but without copying the whole address space.
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pt-raise.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pt-raise.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pt-raise.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -21,7 +21,7 @@
#include <signal.h>
#include <sysdep.h>
#include <tls.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
extern __typeof(raise) __raise;
int __raise (int sig)
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -21,7 +21,7 @@
#include <pthreadP.h>
#include <sys/time.h>
#include <tls.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <kernel-posix-cpu-timers.h>
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_kill.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_kill.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_kill.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -22,7 +22,7 @@
#include <pthreadP.h>
#include <tls.h>
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
int
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/raise.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/raise.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/raise.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -22,7 +22,7 @@
#include <signal.h>
#include <sysdep.h>
#include <pthreadP.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
extern __typeof(raise) __raise;
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -18,7 +18,7 @@
#include <sysdep.h>
#include <lowlevelcond.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include "lowlevel-atomic.h"
#define FUTEX_WAIT 0
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -18,7 +18,7 @@
#include <sysdep.h>
#include <lowlevelcond.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include "lowlevel-atomic.h"
#define FUTEX_WAIT 0
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_create.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_create.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_create.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -24,7 +24,7 @@
#include <string.h>
#include <time.h>
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <internaltypes.h>
#include <pthreadP.h>
#include "kernel-posix-timers.h"
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_delete.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_delete.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_delete.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -21,7 +21,7 @@
#include <stdlib.h>
#include <time.h>
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include "kernel-posix-timers.h"
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <errno.h>
#include <time.h>
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include "kernel-posix-timers.h"
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_gettime.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_gettime.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_gettime.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -21,7 +21,7 @@
#include <stdlib.h>
#include <time.h>
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include "kernel-posix-timers.h"
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -22,7 +22,7 @@
#include <signal.h>
#include <stdbool.h>
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include <pthreadP.h>
#include "kernel-posix-timers.h"
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_settime.c
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_settime.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/timer_settime.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -21,7 +21,7 @@
#include <stdlib.h>
#include <time.h>
#include <sysdep.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#include "kernel-posix-timers.h"
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#include <shlib-compat.h>
#include <lowlevelcond.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#ifdef UP
# define LOCK
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <sysdep.h>
#include <shlib-compat.h>
#include <lowlevelcond.h>
-#include <kernel-features.h>
+#include <bits/kernel-features.h>
#ifdef UP
# define LOCK
Modified: branches/uClibc-nptl/librt/clock_getcpuclockid.c
===================================================================
--- branches/uClibc-nptl/librt/clock_getcpuclockid.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/librt/clock_getcpuclockid.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -21,7 +21,7 @@
#include <time.h>
#include <sysdep.h>
#include <unistd.h>
-#include "kernel-features.h"
+#include <bits/kernel-features.h>
#include "kernel-posix-cpu-timers.h"
#ifndef HAS_CPUCLOCK
Modified: branches/uClibc-nptl/librt/clock_gettime.c
===================================================================
--- branches/uClibc-nptl/librt/clock_gettime.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/librt/clock_gettime.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -21,7 +21,7 @@
#include <errno.h>
#include <time.h>
#include "kernel-posix-cpu-timers.h"
-#include "kernel-features.h"
+#include <bits/kernel-features.h>
#define SYSCALL_GETTIME \
Modified: branches/uClibc-nptl/librt/clock_nanosleep.c
===================================================================
--- branches/uClibc-nptl/librt/clock_nanosleep.c 2008-12-11 15:02:23 UTC (rev 24384)
+++ branches/uClibc-nptl/librt/clock_nanosleep.c 2008-12-11 15:40:55 UTC (rev 24385)
@@ -20,7 +20,7 @@
#include <errno.h>
#include <sysdep-cancel.h>
-#include "kernel-features.h"
+#include <bits/kernel-features.h>
#include "kernel-posix-cpu-timers.h"
More information about the uClibc-cvs
mailing list