diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-07-26 05:41:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-07-26 05:41:16 +0000 |
commit | b5c0b5e4312135aa296de8dd96c0a1f854cda4c5 (patch) | |
tree | 26a6287093e64f7109538b6ab52617635ee383ce /sysdeps | |
parent | b41f1d14f2b3055019a7138891e3bdcd9e9c370d (diff) | |
download | glibc-b5c0b5e4312135aa296de8dd96c0a1f854cda4c5.zip glibc-b5c0b5e4312135aa296de8dd96c0a1f854cda4c5.tar.gz glibc-b5c0b5e4312135aa296de8dd96c0a1f854cda4c5.tar.bz2 |
* sysdeps/unix/sysv/linux/kernel-features.h: IA-64 has the new
syscalls, too.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/kernel-features.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index 882fa04..cbcc918 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -498,10 +498,11 @@ # define __ASSUME_AT_EXECFN 1 #endif -/* Support for various CLOEXEC and NONBLOCK flags was added for x86 and - x86-64 in 2.6.27. */ +/* Support for various CLOEXEC and NONBLOCK flags was added for x86, + x86-64, PPC, and IA-64 in 2.6.27. */ #if __LINUX_KERNEL_VERSION >= 0x02061b \ - && (defined __i386__ || defined __x86_64__ || defined __powerpc__) + && (defined __i386__ || defined __x86_64__ || defined __powerpc__ \ + || defined __ia64__) # define __ASSUME_SOCK_CLOEXEC 1 # define __ASSUME_IN_NONBLOCK 1 # define __ASSUME_PACCEPT 1 |