xref: /haiku/src/libs/posix_error_mapper/signal.cpp (revision 1294543de9ac0eff000eaea1b18368c36435d08e)
1 /*
2  * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <signal.h>
8 
9 #include "posix_error_mapper.h"
10 
11 
12 WRAPPER_FUNCTION(int, pthread_sigmask,
13 		(int how, const sigset_t *set, sigset_t *oldSet),
14 	return B_TO_POSITIVE_ERROR(sReal_pthread_sigmask(how, set, oldSet));
15 )
16