patches/strace/4.5.15/140-mips-sprintsigmask-fix.patch
author Yann Diorcet <diorcet.yann@gmail.com>
Mon Nov 19 21:45:09 2012 +0100 (2012-11-19)
changeset 3121 5016315d88ba
parent 746 b150d6f590fc
permissions -rw-r--r--
binutils/binutils: simplify gold dependencies

In preparation of adding a new kernel-type, Yann D. came up
with a change in semantic on binutils/gold availability.

So far, it was architectures' responsibility to declare that
they did support binutils/gold or not. It makes much more sense
that binutils/gold declares its own availability depending on
the current architecture; after all, architectures have no way
to know wether gold supports them, while gold does know it.

Signed-off-by:Yann Diorcet <diorcet.yann@gmail.com>
[yann.morin.1998@free.fr: split up original patch for self-contained changes]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <d3d1d51f399e6d2c1163.1353320546@macbook-smorlat.local>
Patchwork-Id: 199971
yann@257
     1
diff -dur strace-4.5.15.orig/signal.c strace-4.5.15/signal.c
yann@257
     2
--- strace-4.5.15.orig/signal.c	2007-01-11 23:08:38.000000000 +0100
yann@257
     3
+++ strace-4.5.15/signal.c	2007-07-14 19:24:43.000000000 +0200
yann@257
     4
@@ -1440,7 +1440,7 @@
yann@257
     5
 	  	tcp->u_rval = tcp->u_error = 0;
yann@257
     6
 		if(tcp->u_arg[0] == 0)
yann@257
     7
 		  	return 0;
yann@257
     8
-		tcp->auxstr = sprintsigmask("mask now ", tcp->u_arg[1]);
yann@257
     9
+		tcp->auxstr = sprintsigmask("mask now ", tcp->u_arg[1], 0);
yann@257
    10
 		return RVAL_NONE | RVAL_STR;
yann@257
    11
 	}
yann@257
    12
 	return 0;