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>
     1 2008-04-28  Hiroki Kaminaga  <kaminaga@sm.sony.co.jp>
     2 
     3 	[BZ 6740]
     4 	nptl/sysdeps/powerpc/tcb-offsets.sym (PRIVATE_FUTEX_OFFSET):
     5 	Guard sym definition with #ifndef __ASSUME_PRIVATE_FUTEX.
     6 
     7 --- a/nptl/sysdeps/powerpc/tcb-offsets.sym
     8 +++ b/nptl/sysdeps/powerpc/tcb-offsets.sym
     9 @@ -15,4 +15,6 @@
    10  PID				thread_offsetof (pid)
    11  TID				thread_offsetof (tid)
    12  POINTER_GUARD			(offsetof (tcbhead_t, pointer_guard) - TLS_TCB_OFFSET - sizeof (tcbhead_t))
    13 +#ifndef __ASSUME_PRIVATE_FUTEX
    14  PRIVATE_FUTEX_OFFSET		thread_offsetof (header.private_futex)
    15 +#endif