Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/lib/libc/rpc/mt_misc.h
39530 views
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
#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 xprtlist_lock __xprtlist_lock
46
47
extern pthread_rwlock_t svc_lock;
48
extern pthread_rwlock_t svc_fd_lock;
49
extern pthread_rwlock_t rpcbaddr_cache_lock;
50
extern pthread_mutex_t authdes_ops_lock;
51
extern pthread_mutex_t svcauthdesstats_lock;
52
extern pthread_mutex_t authnone_lock;
53
extern pthread_mutex_t authsvc_lock;
54
extern pthread_mutex_t clnt_fd_lock;
55
extern pthread_mutex_t clntraw_lock;
56
extern pthread_mutex_t dupreq_lock;
57
extern pthread_mutex_t loopnconf_lock;
58
extern pthread_mutex_t ops_lock;
59
extern pthread_mutex_t proglst_lock;
60
extern pthread_mutex_t rpcsoc_lock;
61
extern pthread_mutex_t svcraw_lock;
62
extern pthread_mutex_t tsd_lock;
63
extern pthread_mutex_t xprtlist_lock;
64
65
#endif
66
67