diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-08-14 22:34:04 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-08-14 22:34:04 +0000 |
commit | f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473 (patch) | |
tree | 8d6b59837e4a1e0adec91093a32ed32df2e9a8b6 /ports/sysdeps/unix/sysv | |
parent | dee7d1e9d063dfd1bdbbd44110c5ce36adbc8ba5 (diff) | |
download | glibc-f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473.tar glibc-f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473.tar.gz glibc-f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473.tar.bz2 glibc-f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473.zip |
Remove __ASSUME_CLONE_THREAD_FLAGS.
Diffstat (limited to 'ports/sysdeps/unix/sysv')
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h | 4 | ||||
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/ia64/system.c | 4 | ||||
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/tile/kernel-features.h | 1 |
3 files changed, 1 insertions, 8 deletions
diff --git a/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h b/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h index 061a86df5a..bd3e37777d 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h @@ -20,10 +20,6 @@ #ifndef _KERNEL_FEATURES_H #define _KERNEL_FEATURES_H 1 -/* The late 2.5 kernels saw a lot of new CLONE_* flags. Summarize - their availability with one define. */ -#define __ASSUME_CLONE_THREAD_FLAGS 1 - /* The utimes syscall has been available for some architectures forever. */ #define __ASSUME_UTIMES 1 diff --git a/ports/sysdeps/unix/sysv/linux/ia64/system.c b/ports/sysdeps/unix/sysv/linux/ia64/system.c index f02a99e9eb..6970a1f899 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/system.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/system.c @@ -25,10 +25,8 @@ return. It might still be in the kernel when the cancellation request comes. Therefore we have to use the clone() calls ability to have the kernel write the PID into the user-level variable. */ -#ifdef __ASSUME_CLONE_THREAD_FLAGS -# define FORK() \ +#define FORK() \ INLINE_SYSCALL (clone2, 6, CLONE_PARENT_SETTID | SIGCHLD, NULL, 0, \ &pid, NULL, NULL) -#endif #include <sysdeps/unix/sysv/linux/system.c> diff --git a/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h b/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h index 3c00344d05..956f14cb99 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h @@ -20,7 +20,6 @@ /* TILE glibc support starts with 2.6.36, guaranteeing many kernel features. */ #define __ASSUME_MMAP2_SYSCALL 1 #define __ASSUME_STAT64_SYSCALL 1 -#define __ASSUME_CLONE_THREAD_FLAGS 1 #define __ASSUME_UTIMES 1 #define __ASSUME_FADVISE64_64_SYSCALL 1 #define __ASSUME_O_CLOEXEC 1 |