diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-03-09 22:45:04 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-03-09 22:45:04 +0000 |
commit | 48a437b4b018af24e49bba13131f02506a5db680 (patch) | |
tree | 608ecd9e95aa7157d1e7fc24e014186622fe6797 /contrib/netbsd-tests/lib/libc/setjmp/t_threadjmp.c | |
parent | fa20ffcb722dae7d6a81cebe4ba037373e4c6205 (diff) | |
download | FreeBSD-src-48a437b4b018af24e49bba13131f02506a5db680.zip FreeBSD-src-48a437b4b018af24e49bba13131f02506a5db680.tar.gz |
Fix and connect setjmp test.
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'contrib/netbsd-tests/lib/libc/setjmp/t_threadjmp.c')
-rw-r--r-- | contrib/netbsd-tests/lib/libc/setjmp/t_threadjmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/netbsd-tests/lib/libc/setjmp/t_threadjmp.c b/contrib/netbsd-tests/lib/libc/setjmp/t_threadjmp.c index 4437c92..2014470 100644 --- a/contrib/netbsd-tests/lib/libc/setjmp/t_threadjmp.c +++ b/contrib/netbsd-tests/lib/libc/setjmp/t_threadjmp.c @@ -91,7 +91,7 @@ static pthread_t myself = NULL; static int expectsignal; static void -aborthandler(int signo) +aborthandler(int signo __unused) { ATF_REQUIRE(myself == pthread_self()); ATF_REQUIRE_MSG(expectsignal, "kill(SIGABRT) succeeded"); |