xref: /freebsd/lib/libc/rpc/mt_misc.h (revision 4e8d558c)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (C) 2006 The FreeBSD Project. 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, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29 #ifndef _MT_MISC_H
30 #define	_MT_MISC_H
31 
32 /* Take these locks out of the application namespace. */
33 #define	svc_lock		__svc_lock
34 #define	svc_fd_lock		__svc_fd_lock
35 #define	rpcbaddr_cache_lock	__rpcbaddr_cache_lock
36 #define	authdes_ops_lock	__authdes_ops_lock
37 #define	authnone_lock		__authnone_lock
38 #define	authsvc_lock		__authsvc_lock
39 #define	clnt_fd_lock		__clnt_fd_lock
40 #define	clntraw_lock		__clntraw_lock
41 #define	dupreq_lock		__dupreq_lock
42 #define	loopnconf_lock		__loopnconf_lock
43 #define	ops_lock		__ops_lock
44 #define	proglst_lock		__proglst_lock
45 #define	rpcsoc_lock		__rpcsoc_lock
46 #define	svcraw_lock		__svcraw_lock
47 #define	xprtlist_lock		__xprtlist_lock
48 
49 extern pthread_rwlock_t	svc_lock;
50 extern pthread_rwlock_t	svc_fd_lock;
51 extern pthread_rwlock_t	rpcbaddr_cache_lock;
52 extern pthread_mutex_t	authdes_ops_lock;
53 extern pthread_mutex_t	svcauthdesstats_lock;
54 extern pthread_mutex_t	authnone_lock;
55 extern pthread_mutex_t	authsvc_lock;
56 extern pthread_mutex_t	clnt_fd_lock;
57 extern pthread_mutex_t	clntraw_lock;
58 extern pthread_mutex_t	dupreq_lock;
59 extern pthread_mutex_t	loopnconf_lock;
60 extern pthread_mutex_t	ops_lock;
61 extern pthread_mutex_t	proglst_lock;
62 extern pthread_mutex_t	rpcsoc_lock;
63 extern pthread_mutex_t	svcraw_lock;
64 extern pthread_mutex_t	tsd_lock;
65 extern pthread_mutex_t	xprtlist_lock;
66 
67 #endif
68