patches/glibc/2.5/190-alpha-sigsuspend.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 744 4bf8448536d5
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 --- glibc-2.5/sysdeps/unix/sysv/linux/alpha/sigsuspend.S.orig	2006-10-22 22:17:01.000000000 +0200
     2 +++ glibc-2.5/sysdeps/unix/sysv/linux/alpha/sigsuspend.S	2006-10-22 22:18:05.000000000 +0200
     3 @@ -31,3 +31,21 @@
     4  libc_hidden_def (__sigsuspend)
     5  weak_alias (__sigsuspend, sigsuspend)
     6  strong_alias (__sigsuspend, __libc_sigsuspend)
     7 +
     8 +#ifndef NO_CANCELLATION
     9 +	.globl __sigsuspend_nocancel;
    10 +	.align 4;
    11 +	.type __sigsuspend_nocancel, @function;
    12 +	.usepv __sigsuspend_nocancel, std;
    13 +	cfi_startproc;
    14 +__LABEL(__sigsuspend_nocancel)
    15 +	ldgp    gp, 0(pv);
    16 +	PSEUDO_PROF;
    17 +	PSEUDO_PREPARE_ARGS
    18 +	lda     v0, SYS_ify(sigsuspend);
    19 +	call_pal PAL_callsys;
    20 +	bne     a3, SYSCALL_ERROR_LABEL;
    21 +	ret;
    22 +	cfi_endproc;
    23 +	.size __sigsuspend_nocancel, .-__sigsuspend_nocancel
    24 +#endif