mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-22 06:07:49 +00:00
4b173045e9
Woo... It seems the glibc guys finally decided that tarballs were not deprecated, in fact. The patchset was vampirised from Gentoo (kudos, guys!), and applies to glibc+ports, so that's why it's been added as a patchset against ports, not against glibc.
27 lines
1.3 KiB
Diff
27 lines
1.3 KiB
Diff
2009-05-19 Aurelien Jarno <aurelien@aurel32.net>
|
|
|
|
* sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Define
|
|
FUTEX_WAIT_BITSET, FUTEX_WAKE_BITSET, FUTEX_CLOCK_REALTIME and
|
|
FUTEX_BITSET_MATCH_ANY.
|
|
|
|
ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff -durN glibc-2.10.1.orig/glibc-ports-2.10.1/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h glibc-2.10.1/glibc-ports-2.10.1/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h
|
|
--- glibc-2.10.1.orig/glibc-ports-2.10.1/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h 2009-05-16 10:36:20.000000000 +0200
|
|
+++ glibc-2.10.1/glibc-ports-2.10.1/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h 2009-11-13 00:51:11.000000000 +0100
|
|
@@ -37,7 +37,12 @@
|
|
#define FUTEX_LOCK_PI 6
|
|
#define FUTEX_UNLOCK_PI 7
|
|
#define FUTEX_TRYLOCK_PI 8
|
|
+#define FUTEX_WAIT_BITSET 9
|
|
+#define FUTEX_WAKE_BITSET 10
|
|
#define FUTEX_PRIVATE_FLAG 128
|
|
+#define FUTEX_CLOCK_REALTIME 256
|
|
+
|
|
+#define FUTEX_BITSET_MATCH_ANY 0xffffffff
|
|
|
|
/* Values for 'private' parameter of locking macros. Yes, the
|
|
definition seems to be backwards. But it is not. The bit will be
|
|
diff -durN glibc-2.10.1.orig/ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h glibc-2.10.1/ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h
|