From: Ulrich Drepper Date: Sun, 3 Aug 2003 05:23:52 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.30~18923 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0cbc6c4eba0d6c957917e036a0822c84b92443fc;p=external%2Fglibc.git Update. 2003-08-02 Ulrich Drepper * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_CLONE_STOPPED. --- diff --git a/ChangeLog b/ChangeLog index ae8a9c9..7449cb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-02 Ulrich Drepper + + * sysdeps/unix/sysv/linux/kernel-features.h: Define + __ASSUME_CLONE_STOPPED. + 2003-08-01 Ulrich Drepper * sysdeps/generic/bits/libc-lock.h diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index f2e8630..26043af 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -362,3 +362,8 @@ || (__LINUX_KERNEL_VERSION > 132427 && defined __i386__) # define __ASSUME_UTIMES 1 #endif + +/* The CLONE_STOPPED flag was introduced in the 2.6.0-test1 series. */ +#if __LINUX_KERNEL_VERSION >= 132609 +# define __ASSUME_CLONE_STOPPED 1 +#endif