S390: Move utf8-utf32-z9.c to multiarch folder and use s390_libc_ifunc_expr macro.
[glibc.git] / sunrpc / rpc_thread.c
blobe5225c5caf6d354edabb3380986c09906e331363
1 #include <stdio.h>
2 #include <libc-lock.h>
3 #include <rpc/rpc.h>
4 #include <assert.h>
6 #include <libc-lock.h>
7 #include <libc-tsd.h>
9 #ifdef _RPC_THREAD_SAFE_
11 /* Variable used in non-threaded applications or for the first thread. */
12 static struct rpc_thread_variables __libc_tsd_RPC_VARS_mem;
13 static __thread struct rpc_thread_variables *thread_rpc_vars
14 attribute_tls_model_ie;
17 * Task-variable destructor
19 void __attribute__ ((section ("__libc_thread_freeres_fn")))
20 __rpc_thread_destroy (void)
22 struct rpc_thread_variables *tvp = thread_rpc_vars;
24 if (tvp != NULL) {
25 __rpc_thread_svc_cleanup ();
26 __rpc_thread_clnt_cleanup ();
27 __rpc_thread_key_cleanup ();
28 free (tvp->clnt_perr_buf_s);
29 free (tvp->clntraw_private_s);
30 free (tvp->svcraw_private_s);
31 free (tvp->authdes_cache_s);
32 free (tvp->authdes_lru_s);
33 free (tvp->svc_xports_s);
34 free (tvp->svc_pollfd_s);
35 if (tvp != &__libc_tsd_RPC_VARS_mem)
36 free (tvp);
37 thread_rpc_vars = NULL;
40 #ifdef _LIBC_REENTRANT
41 text_set_element (__libc_thread_subfreeres, __rpc_thread_destroy);
42 #endif
43 text_set_element (__libc_subfreeres, __rpc_thread_destroy);
47 * Initialize RPC multi-threaded operation
49 static void
50 rpc_thread_multi (void)
52 thread_rpc_vars = &__libc_tsd_RPC_VARS_mem;
56 struct rpc_thread_variables *
57 __rpc_thread_variables (void)
59 __libc_once_define (static, once);
60 struct rpc_thread_variables *tvp = thread_rpc_vars;
62 if (tvp == NULL) {
63 __libc_once (once, rpc_thread_multi);
64 tvp = thread_rpc_vars;
65 if (tvp == NULL) {
66 tvp = calloc (1, sizeof *tvp);
67 if (tvp != NULL)
68 thread_rpc_vars = tvp;
71 return tvp;
75 /* Global variables If we're single-threaded, or if this is the first
76 thread using the variable, use the existing global variable. This
77 provides backwards compatibility for existing applications which
78 dynamically link against this code. */
79 #undef svc_fdset
80 #undef rpc_createerr
81 #undef svc_pollfd
82 #undef svc_max_pollfd
84 fd_set *
85 __rpc_thread_svc_fdset (void)
87 struct rpc_thread_variables *tvp;
89 tvp = __rpc_thread_variables ();
90 if (tvp == &__libc_tsd_RPC_VARS_mem)
91 return &svc_fdset;
92 return &tvp->svc_fdset_s;
94 libc_hidden_nolink_sunrpc (__rpc_thread_svc_fdset, GLIBC_2_2_3)
96 struct rpc_createerr *
97 __rpc_thread_createerr (void)
99 struct rpc_thread_variables *tvp;
101 tvp = __rpc_thread_variables ();
102 if (tvp == &__libc_tsd_RPC_VARS_mem)
103 return &rpc_createerr;
104 return &tvp->rpc_createerr_s;
106 libc_hidden_nolink_sunrpc (__rpc_thread_createerr, GLIBC_2_2_3)
108 struct pollfd **
109 __rpc_thread_svc_pollfd (void)
111 struct rpc_thread_variables *tvp;
113 tvp = __rpc_thread_variables ();
114 if (tvp == &__libc_tsd_RPC_VARS_mem)
115 return &svc_pollfd;
116 return &tvp->svc_pollfd_s;
118 #ifdef EXPORT_RPC_SYMBOLS
119 libc_hidden_def (__rpc_thread_svc_pollfd)
120 #else
121 libc_hidden_nolink_sunrpc (__rpc_thread_svc_pollfd, GLIBC_2_2_3)
122 #endif
124 int *
125 __rpc_thread_svc_max_pollfd (void)
127 struct rpc_thread_variables *tvp;
129 tvp = __rpc_thread_variables ();
130 if (tvp == &__libc_tsd_RPC_VARS_mem)
131 return &svc_max_pollfd;
132 return &tvp->svc_max_pollfd_s;
134 #ifdef EXPORT_RPC_SYMBOLS
135 libc_hidden_def (__rpc_thread_svc_max_pollfd)
136 #else
137 libc_hidden_nolink_sunrpc (__rpc_thread_svc_max_pollfd, GLIBC_2_2_3)
138 #endif
140 #endif /* _RPC_THREAD_SAFE_ */