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