xref: /freebsd/lib/libthr/thread/thr_sig.c (revision 6b3455a7665208c366849f0b2b3bc916fb97516e)
1 /*
2  * Copyright (c) 2003 Jeffrey Roberson <jeff@freebsd.org>
3  * Copyright (c) 2003 Jonathan Mini <mini@freebsd.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice unmodified, this list of conditions, and the following
11  *    disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29 
30 #include <sys/param.h>
31 #include <sys/types.h>
32 #include <sys/signalvar.h>
33 #include <signal.h>
34 #include <fcntl.h>
35 #include <unistd.h>
36 #include <setjmp.h>
37 #include <errno.h>
38 #include <pthread.h>
39 #include <stdlib.h>
40 
41 #include "thr_private.h"
42 
43 /* #define DEBUG_SIGNAL */
44 #ifdef DEBUG_SIGNAL
45 #define DBG_MSG		stdout_debug
46 #else
47 #define DBG_MSG(x...)
48 #endif
49 
50 __weak_reference(_pthread_sigmask, pthread_sigmask);
51 
52 int
53 _pthread_sigmask(int how, const sigset_t *set, sigset_t *oset)
54 {
55 	int error;
56 
57 	/*
58 	 * This always sets the mask on the current thread.
59 	 */
60 	error = sigprocmask(how, set, oset);
61 
62 	/*
63 	 * pthread_sigmask returns errno or success while sigprocmask returns
64 	 * -1 and sets errno.
65 	 */
66 	if (error == -1)
67 		error = errno;
68 
69 	return (error);
70 }
71 
72 
73 __weak_reference(_pthread_kill, pthread_kill);
74 
75 int
76 _pthread_kill(pthread_t pthread, int sig)
77 {
78 	int error;
79 
80 	if (sig < 0 || sig > NSIG)
81 		return (EINVAL);
82 	if (_thread_initial == NULL)
83 		_thread_init();
84 	error = _find_thread(pthread);
85 	if (error != 0)
86 		return (error);
87 
88 	/*
89 	 * A 0 signal means do error-checking but don't send signal.
90 	 */
91 	if (sig == 0)
92 		return (0);
93 
94 	return (thr_kill(pthread->thr_id, sig));
95 }
96