mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_CLONE_THREAD_FLAGS): Consolidate definitions. 2006-02-03 Jakub Jelinek <jakub@redhat.com> * manual/filesys.texi (futimes): Fix prototype.
This commit is contained in:
11
ChangeLog
11
ChangeLog
@ -1,12 +1,15 @@
|
|||||||
2006-02-03 Jakub Jelinek <jakub@redhat.com>
|
|
||||||
|
|
||||||
* manual/filesys.texi (futimes): Fix prototype.
|
|
||||||
|
|
||||||
2006-02-21 Roland McGrath <roland@redhat.com>
|
2006-02-21 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/kernel-features.h
|
||||||
|
(__ASSUME_CLONE_THREAD_FLAGS): Consolidate definitions.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Update comment, remove
|
* sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Update comment, remove
|
||||||
__THROW from epoll_wait, to match .../linux/sys/epoll.h file.
|
__THROW from epoll_wait, to match .../linux/sys/epoll.h file.
|
||||||
|
|
||||||
|
2006-02-03 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* manual/filesys.texi (futimes): Fix prototype.
|
||||||
|
|
||||||
2004-08-09 Paul Eggert <eggert@cs.ucla.edu>
|
2004-08-09 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
[BZ #315]
|
[BZ #315]
|
||||||
|
@ -286,8 +286,13 @@
|
|||||||
/* The late 2.5 kernels saw a lot of new CLONE_* flags. Summarize
|
/* The late 2.5 kernels saw a lot of new CLONE_* flags. Summarize
|
||||||
their availability with one define. The changes were made first
|
their availability with one define. The changes were made first
|
||||||
for i386 and the have to be done separately for the other archs.
|
for i386 and the have to be done separately for the other archs.
|
||||||
For i386 we pick 2.5.50 as the first version with support. */
|
For i386 we pick 2.5.50 as the first version with support.
|
||||||
#if __LINUX_KERNEL_VERSION >= 132402 && defined __i386__
|
For ia64, s390*, PPC, x86-64, and SH we pick 2.5.64 as the first
|
||||||
|
version with support. */
|
||||||
|
#if ((__LINUX_KERNEL_VERSION >= 132402 && defined __i386__) \
|
||||||
|
|| (__LINUX_KERNEL_VERSION >= 132416 \
|
||||||
|
&& (defined __ia64__ || defined __s390__ \
|
||||||
|
|| defined __powerpc__ || defined __x86_64__ || defined __sh__)))
|
||||||
# define __ASSUME_CLONE_THREAD_FLAGS 1
|
# define __ASSUME_CLONE_THREAD_FLAGS 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -311,17 +316,6 @@
|
|||||||
# define __ASSUME_POSIX_CPU_TIMERS 1
|
# define __ASSUME_POSIX_CPU_TIMERS 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* The late 2.5 kernels saw a lot of new CLONE_* flags. Summarize
|
|
||||||
their availability with one define. The changes were made first
|
|
||||||
for i386 and the have to be done separately for the other archs.
|
|
||||||
For ia64, s390*, PPC, x86-64 we pick 2.5.64 as the first version
|
|
||||||
with support. */
|
|
||||||
#if __LINUX_KERNEL_VERSION >= 132416 \
|
|
||||||
&& (defined __ia64__ || defined __s390__ || defined __powerpc__ \
|
|
||||||
|| defined __x86_64__ || defined __sh__)
|
|
||||||
# define __ASSUME_CLONE_THREAD_FLAGS 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* With kernel 2.4.17 we always have netlink support. */
|
/* With kernel 2.4.17 we always have netlink support. */
|
||||||
#if __LINUX_KERNEL_VERSION >= (132096+17)
|
#if __LINUX_KERNEL_VERSION >= (132096+17)
|
||||||
# define __ASSUME_NETLINK_SUPPORT 1
|
# define __ASSUME_NETLINK_SUPPORT 1
|
||||||
|
Reference in New Issue
Block a user