]> sourceware.org Git - glibc.git/blame - include/rpc/rpc.h
Update.
[glibc.git] / include / rpc / rpc.h
CommitLineData
e4aced47 1#ifndef _RPC_RPC_H
28f540f4 2#include <sunrpc/rpc/rpc.h>
e4aced47
AJ
3
4/* Now define the internal interfaces. */
5extern unsigned long _create_xid (void);
6
373e6a51
UD
7/*
8 * Multi-threaded support
9 * Group all global and static variables into a single spot.
10 * This area is allocated on a per-thread basis
11 */
12#ifdef _RPC_THREAD_SAFE_
13struct rpc_thread_variables {
14 fd_set svc_fdset_s; /* Global, rpc_common.c */
15 struct rpc_createerr rpc_createerr_s; /* Global, rpc_common.c */
16 struct pollfd *svc_pollfd_s; /* Global, rpc_common.c */
17 int svc_max_pollfd_s; /* Global, rpc_common.c */
18
19 void *authnone_private_s; /* auth_none.c */
20
21 void *clnt_perr_buf_s; /* clnt_perr.c */
22
23 void *clntraw_private_s; /* clnt_raw.c */
24
25 void *callrpc_private_s; /* clnt_simp.c */
26
27 void *key_call_private_s; /* key_call.c */
28
29 void *authdes_cache_s; /* svcauth_des.c */
30 void *authdes_lru_s; /* svcauth_des.c */
31
32 void *svc_xports_s; /* svc.c */
33 void *svc_head_s; /* svc.c */
34
35 void *svcraw_private_s; /* svc_raw.c */
36
37 void *svcsimple_proglst_s; /* svc_simple.c */
38 void *svcsimple_transp_s; /* svc_simple.c */
39};
40
41extern struct rpc_thread_variables *__rpc_thread_variables(void)
42 __attribute__ ((const));
43extern void __rpc_thread_svc_cleanup (void);
44extern void __rpc_thread_clnt_cleanup (void);
45extern void __rpc_thread_key_cleanup (void);
46
47extern void __rpc_thread_destroy (void);
48
49#define RPC_THREAD_VARIABLE(x) (__rpc_thread_variables()->x)
50
373e6a51
UD
51#endif /* _RPC_THREAD_SAFE_ */
52
e4aced47 53#endif
This page took 0.155903 seconds and 5 git commands to generate.