pthread_sigmask - Examiner et modifier le masque des signaux bloqués
Bibliothèque de threads POSIX (
libpthread,
-lpthread)
#include <signal.h>
int pthread_sigmask(int how, const sigset_t *set, sigset_t *oldset);
pthread_sigmask() :
_POSIX_C_SOURCE >= 199506L || _XOPEN_SOURCE >= 500
The
pthread_sigmask() function is just like
sigprocmask(2), with
the difference that its use in multithreaded programs is explicitly specified
by POSIX.1. Other differences are noted in this page.
Pour une description des arguments et du mode d'opération de cette
fonction, consultez
sigprocmask(2).
En cas de réussite,
pthread_sigmask() renvoie 0 ; en cas
d'erreur, elle renvoie un numéro d'erreur.
Consultez
sigprocmask(2).
Pour une explication des termes utilisés dans cette section, consulter
attributes(7).
Interface |
Attribut |
Valeur |
pthread_sigmask() |
Sécurité des threads |
MT-Safe |
POSIX.1-2001, POSIX.1-2008.
Un nouveau thread hérite d'une copie du masque de signaux de son
créateur.
The glibc
pthread_sigmask() function silently ignores attempts to block
the two real-time signals that are used internally by the NPTL threading
implementation. See
nptl(7) for details.
Le programme ci-dessous bloque certains signaux dans le thread principal, puis
crée un thread dédié pour récupérer ces
signaux avec
sigwait(3). La session d'interpréteur de commande
ci-dessous démontre l'utilisation du programme.
$ ./a.out &
[1] 5423
$ kill -QUIT %1
Signal handling thread got signal 3
$ kill -USR1 %1
Signal handling thread got signal 10
$ kill -TERM %1
[1]+ Terminated ./a.out
#include <errno.h>
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
/* Simple error handling functions */
#define handle_error_en(en, msg) \
do { errno = en; perror(msg); exit(EXIT_FAILURE); } while (0)
static void *
sig_thread(void *arg)
{
sigset_t *set = arg;
int s, sig;
for (;;) {
s = sigwait(set, &sig);
if (s != 0)
handle_error_en(s, "sigwait");
printf("Signal handling thread got signal %d\n", sig);
}
}
int
main(void)
{
pthread_t thread;
sigset_t set;
int s;
/* Block SIGQUIT and SIGUSR1; other threads created by main()
will inherit a copy of the signal mask. */
sigemptyset(&set);
sigaddset(&set, SIGQUIT);
sigaddset(&set, SIGUSR1);
s = pthread_sigmask(SIG_BLOCK, &set, NULL);
if (s != 0)
handle_error_en(s, "pthread_sigmask");
s = pthread_create(&thread, NULL, &sig_thread, &set);
if (s != 0)
handle_error_en(s, "pthread_create");
/* Main thread carries on to create other threads and/or do
other work. */
pause(); /* Dummy pause so we can test program */
}
sigaction(2),
sigpending(2),
sigprocmask(2),
pthread_attr_setsigmask_np(3),
pthread_create(3),
pthread_kill(3),
sigsetops(3),
pthreads(7),
signal(7)
La traduction française de cette page de manuel a été
créée par Christophe Blaess
<
https://www.blaess.fr/christophe/>, Stéphan Rafin
<
[email protected]>, Thierry Vignaud
<
[email protected]>, François Micaux, Alain Portal
<
[email protected]>, Jean-Philippe Guérard
<
[email protected]>, Jean-Luc Coulon (f5ibh)
<
[email protected]>, Julien Cristau
<
[email protected]>, Thomas Huriaux <
[email protected]>,
Nicolas François <
[email protected]>, Florentin
Duneau <
[email protected]>, Simon Paillard
<
[email protected]>, Denis Barbier
<
[email protected]>, David Prévot <
[email protected]> et
Frédéric Hantrais <
[email protected]>
Cette traduction est une documentation libre ; veuillez vous reporter
à la
GNU
General Public License version 3 concernant les conditions de copie
et de distribution. Il n'y a aucune RESPONSABILITÉ LÉGALE.
Si vous découvrez un bogue dans la traduction de cette page de manuel,
veuillez envoyer un message à
[email protected]