patches/glibc/2.7/230-powerpc-private_futex.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
permissions -rw-r--r--
all: fix wildcard to work with make-4.x

In make-3.8x, the $(wildacrd) function would sort the entries,
while in make-4.x, it would just return the entries in any
unpredictable order [*]

Use the $(sort) function to get reproducible behaviour.

[*] Well, most probably the roder the entries appear when read
from readdir()

Reported-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
yann@766
     1
2008-04-28  Hiroki Kaminaga  <kaminaga@sm.sony.co.jp>
yann@766
     2
yann@766
     3
	[BZ 6740]
yann@766
     4
	nptl/sysdeps/powerpc/tcb-offsets.sym (PRIVATE_FUTEX_OFFSET):
yann@766
     5
	Guard sym definition with #ifndef __ASSUME_PRIVATE_FUTEX.
yann@766
     6
yann@766
     7
--- a/nptl/sysdeps/powerpc/tcb-offsets.sym
yann@766
     8
+++ b/nptl/sysdeps/powerpc/tcb-offsets.sym
yann@766
     9
@@ -15,4 +15,6 @@
yann@766
    10
 PID				thread_offsetof (pid)
yann@766
    11
 TID				thread_offsetof (tid)
yann@766
    12
 POINTER_GUARD			(offsetof (tcbhead_t, pointer_guard) - TLS_TCB_OFFSET - sizeof (tcbhead_t))
yann@766
    13
+#ifndef __ASSUME_PRIVATE_FUTEX
yann@766
    14
 PRIVATE_FUTEX_OFFSET		thread_offsetof (header.private_futex)
yann@766
    15
+#endif