mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
(__ASSUME_PRIVATE_FUTEX): Define for kernel >= 2.6.22.
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
/* Set flags signalling availability of kernel features based on given
|
/* Set flags signalling availability of kernel features based on given
|
||||||
kernel version number.
|
kernel version number.
|
||||||
Copyright (C) 1999-2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
Copyright (C) 1999-2006, 2007 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -463,3 +463,8 @@
|
|||||||
#if __LINUX_KERNEL_VERSION >= 0x020616
|
#if __LINUX_KERNEL_VERSION >= 0x020616
|
||||||
# define __ASSUME_UTIMENSAT 1
|
# define __ASSUME_UTIMENSAT 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Support for private futexes was added in 2.6.22. */
|
||||||
|
#if __LINUX_KERNEL_VERSION >= 0x020616
|
||||||
|
# define __ASSUME_PRIVATE_FUTEX 1
|
||||||
|
#endif
|
||||||
|
Reference in New Issue
Block a user