From: Tom Hughes Date: Mon, 17 Feb 2014 22:32:15 +0000 (+0000) Subject: Use sigjmp_buf with sig{set,long}jmp, not jmp_buf X-Git-Tag: svn/VALGRIND_3_10_0~624 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8f66f8d4dfe440c9dad458ee5ed88a4e98896d2;p=thirdparty%2Fvalgrind.git Use sigjmp_buf with sig{set,long}jmp, not jmp_buf Patch from Ivo Raisr on BZ#331257 git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13812 --- diff --git a/NEWS b/NEWS index 85bdb7c677..a520a3d351 100644 --- a/NEWS +++ b/NEWS @@ -52,6 +52,7 @@ where XXXXXX is the bug number as listed below. 330469 Add clock_adjtime syscall support 330939 Support for AMD's syscall instruction on x86 330941 Typo in PRE(poll) syscall wrapper +331257 Fix type of jump buffer in test none/tests/faultstatus n-i-bz Fix KVM_CREATE_IRQCHIP ioctl handling Release 3.9.0 (31 October 2013) diff --git a/none/tests/faultstatus.c b/none/tests/faultstatus.c index 230865cc26..ee30ab1b46 100644 --- a/none/tests/faultstatus.c +++ b/none/tests/faultstatus.c @@ -41,7 +41,7 @@ static const struct test *cur_test; static int zero(); -static jmp_buf escape; +static sigjmp_buf escape; #define BADADDR ((int *)0x1234)