2 #include <bits/libc-lock.h>
6 #include <bits/libc-lock.h>
7 #include <bits/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 __libc_tsd_define (, RPC_VARS
)
16 * Task-variable destructor
18 void __attribute__ ((section ("__libc_thread_freeres_fn")))
19 __rpc_thread_destroy (void)
21 struct rpc_thread_variables
*tvp
= __libc_tsd_get (RPC_VARS
);
24 __rpc_thread_svc_cleanup ();
25 __rpc_thread_clnt_cleanup ();
26 __rpc_thread_key_cleanup ();
27 free (tvp
->clnt_perr_buf_s
);
28 free (tvp
->clntraw_private_s
);
29 free (tvp
->svcraw_private_s
);
30 free (tvp
->authdes_cache_s
);
31 free (tvp
->authdes_lru_s
);
32 free (tvp
->svc_xports_s
);
33 free (tvp
->svc_pollfd_s
);
34 if (tvp
!= &__libc_tsd_RPC_VARS_mem
)
36 __libc_tsd_set (RPC_VARS
, NULL
);
39 #ifdef _LIBC_REENTRANT
40 text_set_element (__libc_thread_subfreeres
, __rpc_thread_destroy
);
42 text_set_element (__libc_subfreeres
, __rpc_thread_destroy
);
46 * Initialize RPC multi-threaded operation
49 rpc_thread_multi (void)
51 __libc_tsd_set (RPC_VARS
, &__libc_tsd_RPC_VARS_mem
);
55 struct rpc_thread_variables
*
56 __rpc_thread_variables (void)
58 __libc_once_define (static, once
);
59 struct rpc_thread_variables
*tvp
;
61 tvp
= __libc_tsd_get (RPC_VARS
);
63 __libc_once (once
, rpc_thread_multi
);
64 tvp
= __libc_tsd_get (RPC_VARS
);
66 tvp
= calloc (1, sizeof *tvp
);
68 __libc_tsd_set (RPC_VARS
, tvp
);
70 tvp
= __libc_tsd_get (RPC_VARS
);
77 /* Global variables If we're single-threaded, or if this is the first
78 thread using the variable, use the existing global variable. This
79 provides backwards compatability for existing applications which
80 dynamically link against this code. */
87 __rpc_thread_svc_fdset (void)
89 struct rpc_thread_variables
*tvp
;
91 tvp
= __rpc_thread_variables ();
92 if (tvp
== &__libc_tsd_RPC_VARS_mem
)
94 return &tvp
->svc_fdset_s
;
96 libc_hidden_def (__rpc_thread_svc_fdset
)
98 struct rpc_createerr
*
99 __rpc_thread_createerr (void)
101 struct rpc_thread_variables
*tvp
;
103 tvp
= __rpc_thread_variables ();
104 if (tvp
== &__libc_tsd_RPC_VARS_mem
)
105 return &rpc_createerr
;
106 return &tvp
->rpc_createerr_s
;
108 libc_hidden_def (__rpc_thread_createerr
)
111 __rpc_thread_svc_pollfd (void)
113 struct rpc_thread_variables
*tvp
;
115 tvp
= __rpc_thread_variables ();
116 if (tvp
== &__libc_tsd_RPC_VARS_mem
)
118 return &tvp
->svc_pollfd_s
;
120 libc_hidden_def (__rpc_thread_svc_pollfd
)
123 __rpc_thread_svc_max_pollfd (void)
125 struct rpc_thread_variables
*tvp
;
127 tvp
= __rpc_thread_variables ();
128 if (tvp
== &__libc_tsd_RPC_VARS_mem
)
129 return &svc_max_pollfd
;
130 return &tvp
->svc_max_pollfd_s
;
132 libc_hidden_def (__rpc_thread_svc_max_pollfd
)
134 #endif /* _RPC_THREAD_SAFE_ */