source: rtems-libbsd/freebsd/lib/libc/rpc/mt_misc.h @ f41a394

55-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since f41a394 was 60b1d40, checked in by Sebastian Huber <sebastian.huber@…>, on 06/09/16 at 08:23:57

RPC(3): Import from FreeBSD

  • Property mode set to 100644
File size: 2.6 KB
Line 
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$
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
47extern pthread_rwlock_t svc_lock;
48extern pthread_rwlock_t svc_fd_lock;
49extern pthread_rwlock_t rpcbaddr_cache_lock;
50extern pthread_mutex_t  authdes_ops_lock;
51extern pthread_mutex_t  svcauthdesstats_lock;
52extern pthread_mutex_t  authnone_lock;
53extern pthread_mutex_t  authsvc_lock;
54extern pthread_mutex_t  clnt_fd_lock;
55extern pthread_mutex_t  clntraw_lock;
56extern pthread_mutex_t  dupreq_lock;
57extern pthread_mutex_t  loopnconf_lock;
58extern pthread_mutex_t  ops_lock;
59extern pthread_mutex_t  proglst_lock;
60extern pthread_mutex_t  rpcsoc_lock;
61extern pthread_mutex_t  svcraw_lock;
62extern pthread_mutex_t  tsd_lock;
63extern pthread_mutex_t  xprtlist_lock;
64
65#endif
Note: See TracBrowser for help on using the repository browser.