striconv, striconveh, unicodeio: Drop workaround for glibc 2.1.
[gnulib.git] / tests / test-pthread_sigmask2.c
bloba847e6b3b3ecdfd6b54a76ab156b46bd4c5cc7d9
1 /* Test of pthread_sigmask in a multi-threaded program.
2 Copyright (C) 2011-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2011. */
19 #include <config.h>
21 #include <signal.h>
23 #include <errno.h>
24 #include <pthread.h>
25 #include <stdio.h>
26 #include <unistd.h>
28 #include "virtualbox.h"
29 #include "macros.h"
31 #if USE_POSIX_THREADS || USE_ISOC_AND_POSIX_THREADS
33 static pthread_t main_thread;
34 static pthread_t killer_thread;
36 static void *
37 killer_thread_func (_GL_UNUSED void *arg)
39 sleep (1);
40 pthread_kill (main_thread, SIGINT);
41 return NULL;
44 static volatile int sigint_occurred;
46 static void
47 sigint_handler (_GL_UNUSED int sig)
49 sigint_occurred++;
52 int
53 main ()
55 /* This test occasionally fails on Linux (glibc or musl libc), in a
56 VirtualBox VM with paravirtualization = Default or KVM, with ≥ 2 CPUs.
57 Skip the test in this situation. */
58 if (is_running_under_virtualbox_kvm () && num_cpus () > 1)
60 fputs ("Skipping test: avoiding VirtualBox bug with KVM paravirtualization\n",
61 stderr);
62 return 77;
65 sigset_t set;
67 signal (SIGINT, sigint_handler);
69 sigemptyset (&set);
70 sigaddset (&set, SIGINT);
72 /* Check error handling. */
73 /* This call returns 0 on NetBSD 8.0. */
74 #if !defined __NetBSD__
75 ASSERT (pthread_sigmask (1729, &set, NULL) == EINVAL);
76 #endif
78 /* Block SIGINT. */
79 ASSERT (pthread_sigmask (SIG_BLOCK, &set, NULL) == 0);
81 /* Request a SIGINT signal from another thread. */
82 main_thread = pthread_self ();
83 ASSERT (pthread_create (&killer_thread, NULL, killer_thread_func, NULL) == 0);
85 /* Wait. */
86 sleep (2);
88 /* The signal should not have arrived yet, because it is blocked. */
89 ASSERT (sigint_occurred == 0);
91 /* Unblock SIGINT. */
92 ASSERT (pthread_sigmask (SIG_UNBLOCK, &set, NULL) == 0);
94 /* The signal should have arrived now, because POSIX says
95 "If there are any pending unblocked signals after the call to
96 pthread_sigmask(), at least one of those signals shall be delivered
97 before the call to pthread_sigmask() returns." */
98 ASSERT (sigint_occurred == 1);
100 /* Clean up the thread. This avoid a "ThreadSanitizer: thread leak" warning
101 from "gcc -fsanitize=thread". */
102 ASSERT (pthread_join (killer_thread, NULL) == 0);
104 return test_exit_status;
107 #else
110 main ()
112 fputs ("Skipping test: POSIX threads not enabled\n", stderr);
113 return 77;
116 #endif