diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-03 05:23:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-03 05:23:52 +0000 |
commit | 0cbc6c4eba0d6c957917e036a0822c84b92443fc (patch) | |
tree | 5487c27c7fc2ea3aa955b3e48441712f6d361e29 | |
parent | 5c5252bd527a9d0c64fb6e73bbb579077c1b3e39 (diff) | |
download | glibc-0cbc6c4eba0d6c957917e036a0822c84b92443fc.tar.gz glibc-0cbc6c4eba0d6c957917e036a0822c84b92443fc.tar.xz glibc-0cbc6c4eba0d6c957917e036a0822c84b92443fc.zip |
Update.
2003-08-02 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_CLONE_STOPPED.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel-features.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index ae8a9c9b49..7449cb2137 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-02 Ulrich Drepper <drepper@redhat.com> + + * sysdeps/unix/sysv/linux/kernel-features.h: Define + __ASSUME_CLONE_STOPPED. + 2003-08-01 Ulrich Drepper <drepper@redhat.com> * 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 f2e86305ab..26043af047 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 |