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 if (tvp
!= &__libc_tsd_RPC_VARS_mem
)
34 __libc_tsd_set (RPC_VARS
, NULL
);
37 #ifdef _LIBC_REENTRANT
38 text_set_element (__libc_thread_subfreeres
, __rpc_thread_destroy
);
40 text_set_element (__libc_subfreeres
, __rpc_thread_destroy
);
44 * Initialize RPC multi-threaded operation
47 rpc_thread_multi (void)
49 __libc_tsd_set (RPC_VARS
, &__libc_tsd_RPC_VARS_mem
);
53 struct rpc_thread_variables
*
54 __rpc_thread_variables (void)
56 __libc_once_define (static, once
);
57 struct rpc_thread_variables
*tvp
;
59 tvp
= __libc_tsd_get (RPC_VARS
);
61 __libc_once (once
, rpc_thread_multi
);
62 tvp
= __libc_tsd_get (RPC_VARS
);
64 tvp
= calloc (1, sizeof *tvp
);
66 __libc_tsd_set (RPC_VARS
, tvp
);
68 tvp
= __libc_tsd_get (RPC_VARS
);
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 compatability for existing applications which
78 dynamically link against this code. */
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
)
92 return &tvp
->svc_fdset_s
;
94 libc_hidden_def (__rpc_thread_svc_fdset
)
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_def (__rpc_thread_createerr
)
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
)
116 return &tvp
->svc_pollfd_s
;
118 libc_hidden_def (__rpc_thread_svc_pollfd
)
121 __rpc_thread_svc_max_pollfd (void)
123 struct rpc_thread_variables
*tvp
;
125 tvp
= __rpc_thread_variables ();
126 if (tvp
== &__libc_tsd_RPC_VARS_mem
)
127 return &svc_max_pollfd
;
128 return &tvp
->svc_max_pollfd_s
;
130 libc_hidden_def (__rpc_thread_svc_max_pollfd
)
132 #endif /* _RPC_THREAD_SAFE_ */