From: Ulrich Drepper Date: Sat, 26 Jul 2008 05:41:16 +0000 (+0000) Subject: * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 has the new X-Git-Tag: cvs/fedora-glibc-20080728T2320~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5c0b5e4312135aa296de8dd96c0a1f854cda4c5;p=thirdparty%2Fglibc.git * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 has the new syscalls, too. --- diff --git a/ChangeLog b/ChangeLog index 510a145eb26..25992b6a94d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-07-25 Ulrich Drepper + * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 has the new + syscalls, too. + * sysdeps/i386/i686/memcmp.S: Fix unwind information. Reported by Paul Pluzhnikov . diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index 882fa046374..cbcc918c139 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