patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 26 15:12:33 2008 +0000 (2008-07-26)
branch1.2
changeset 730 823ac8f8e9fd
permissions -rw-r--r--
Backport #849 from trunk:
Remove garbage files left behind by downloads from sourceforge.net.

/branches/1.2/scripts/build/debug/500-strace.sh | 4 4 0 0 ++++
/branches/1.2/scripts/build/debug/200-duma.sh | 5 4 1 0 ++++-
2 files changed, 8 insertions(+), 1 deletion(-)
     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