|
From: <sv...@va...> - 2014-02-17 22:32:26
|
Author: tom
Date: Mon Feb 17 22:32:15 2014
New Revision: 13812
Log:
Use sigjmp_buf with sig{set,long}jmp, not jmp_buf
Patch from Ivo Raisr on BZ#331257
Modified:
trunk/NEWS
trunk/none/tests/faultstatus.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Mon Feb 17 22:32:15 2014
@@ -52,6 +52,7 @@
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)
Modified: trunk/none/tests/faultstatus.c
==============================================================================
--- trunk/none/tests/faultstatus.c (original)
+++ trunk/none/tests/faultstatus.c Mon Feb 17 22:32:15 2014
@@ -41,7 +41,7 @@
static int zero();
-static jmp_buf escape;
+static sigjmp_buf escape;
#define BADADDR ((int *)0x1234)
|