malloc: Decorate malloc maps
[glibc.git] / signal / tst-sigisemptyset.c
blob9b3c2fba9aa8f5a0b0dfb1b53d842561ed1f2196
1 /* Tests for sigisemptyset/sigorset/sigandset.
2 Copyright (C) 2020-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <signal.h>
21 #include <support/check.h>
23 static int
24 do_test (void)
27 sigset_t set;
28 sigemptyset (&set);
29 TEST_COMPARE (sigisemptyset (&set), 1);
33 sigset_t set;
34 sigfillset (&set);
35 TEST_COMPARE (sigisemptyset (&set), 0);
39 sigset_t setfill, setempty, set;
40 sigfillset (&setfill);
41 sigemptyset (&setempty);
43 sigorset (&set, &setfill, &setempty);
44 TEST_COMPARE (sigisemptyset (&set), 0);
46 sigandset (&set, &setfill, &setempty);
47 TEST_COMPARE (sigisemptyset (&set), 1);
50 /* Ensure current SIG_BLOCK mask empty. */
52 sigset_t set;
53 sigemptyset (&set);
54 TEST_COMPARE (sigprocmask (SIG_BLOCK, &set, 0), 0);
58 sigset_t set;
59 sigemptyset (&set);
60 TEST_COMPARE (sigprocmask (SIG_BLOCK, 0, &set), 0);
61 TEST_COMPARE (sigisemptyset (&set), 1);
65 sigset_t set;
66 sigfillset (&set);
67 TEST_COMPARE (sigprocmask (SIG_BLOCK, 0, &set), 0);
68 TEST_COMPARE (sigisemptyset (&set), 1);
71 /* Block all signals. */
73 sigset_t set;
74 sigfillset (&set);
75 TEST_COMPARE (sigprocmask (SIG_BLOCK, &set, 0), 0);
79 sigset_t set;
80 sigemptyset (&set);
81 TEST_COMPARE (sigpending (&set), 0);
82 TEST_COMPARE (sigisemptyset (&set), 1);
86 sigset_t set;
87 sigfillset (&set);
88 TEST_COMPARE (sigpending (&set), 0);
89 TEST_COMPARE (sigisemptyset (&set), 1);
92 return 0;
95 #include <support/test-driver.c>