Mon Jan 10 05:15:00 2011 UTC ()
make constant fit in 32 bits.


(christos)
diff -r1.1 -r1.2 src/tests/lib/libc/sys/t_sigqueue.c

cvs diff -r1.1 -r1.2 src/tests/lib/libc/sys/t_sigqueue.c (switch to unified diff)

--- src/tests/lib/libc/sys/t_sigqueue.c 2011/01/10 04:57:56 1.1
+++ src/tests/lib/libc/sys/t_sigqueue.c 2011/01/10 05:15:00 1.2
@@ -1,92 +1,92 @@ @@ -1,92 +1,92 @@
1/* $NetBSD: t_sigqueue.c,v 1.1 2011/01/10 04:57:56 christos Exp $ */ 1/* $NetBSD: t_sigqueue.c,v 1.2 2011/01/10 05:15:00 christos Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2011 The NetBSD Foundation, Inc. 4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Christos Zoulas. 8 * by Christos Zoulas.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software 18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement: 19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD 20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors. 21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its 22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived 23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission. 24 * from this software without specific prior written permission.
25 * 25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE. 36 * POSSIBILITY OF SUCH DAMAGE.
37 */ 37 */
38 38
39#include <sys/cdefs.h> 39#include <sys/cdefs.h>
40__RCSID("$NetBSD: t_sigqueue.c,v 1.1 2011/01/10 04:57:56 christos Exp $"); 40__RCSID("$NetBSD: t_sigqueue.c,v 1.2 2011/01/10 05:15:00 christos Exp $");
41 41
42#include <signal.h> 42#include <signal.h>
43#include <unistd.h> 43#include <unistd.h>
44#include <stdlib.h> 44#include <stdlib.h>
45#include <sched.h> 45#include <sched.h>
46#include <err.h> 46#include <err.h>
47 47
48#include <atf-c.h> 48#include <atf-c.h>
49 49
50ATF_TC(sigqueue); 50ATF_TC(sigqueue);
51ATF_TC_HEAD(sigqueue, tc) 51ATF_TC_HEAD(sigqueue, tc)
52{ 52{
53 atf_tc_set_md_var(tc, "descr", "Checks sigqueue sigval delivery"); 53 atf_tc_set_md_var(tc, "descr", "Checks sigqueue sigval delivery");
54} 54}
55 55
56#define VALUE (int)0xc001dadd1 56#define VALUE (int)0xc001dad1
57static int value; 57static int value;
58 58
59static void 59static void
60/*ARGSUSED*/ 60/*ARGSUSED*/
61handler(int signo, siginfo_t *info, void *data) 61handler(int signo, siginfo_t *info, void *data)
62{ 62{
63 value = info->si_value.sival_int; 63 value = info->si_value.sival_int;
64 kill(0, SIGINFO); 64 kill(0, SIGINFO);
65} 65}
66 66
67ATF_TC_BODY(sigqueue, tc) 67ATF_TC_BODY(sigqueue, tc)
68{ 68{
69 struct sigaction sa; 69 struct sigaction sa;
70 union sigval sv; 70 union sigval sv;
71 71
72 sa.sa_sigaction = handler; 72 sa.sa_sigaction = handler;
73 sigemptyset(&sa.sa_mask); 73 sigemptyset(&sa.sa_mask);
74 sa.sa_flags = SA_SIGINFO; 74 sa.sa_flags = SA_SIGINFO;
75 75
76 if (sigaction(SIGUSR1, &sa, NULL) == -1) 76 if (sigaction(SIGUSR1, &sa, NULL) == -1)
77 err(1, "sigaction"); 77 err(1, "sigaction");
78 78
79 sv.sival_int = VALUE; 79 sv.sival_int = VALUE;
80 if (sigqueue(0, SIGUSR1, sv) == -1) 80 if (sigqueue(0, SIGUSR1, sv) == -1)
81 err(1, "sigqueue"); 81 err(1, "sigqueue");
82 82
83 sched_yield(); 83 sched_yield();
84 ATF_REQUIRE_EQ(sv.sival_int, value); 84 ATF_REQUIRE_EQ(sv.sival_int, value);
85} 85}
86 86
87ATF_TP_ADD_TCS(tp) 87ATF_TP_ADD_TCS(tp)
88{ 88{
89 ATF_TP_ADD_TC(tp, sigqueue); 89 ATF_TP_ADD_TC(tp, sigqueue);
90 90
91 return atf_no_error(); 91 return atf_no_error();
92} 92}