]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sunrpc/rpc_thread.c
time/tst-strftime2.c: Make the file easier to maintain
[thirdparty/glibc.git] / sunrpc / rpc_thread.c
index fee47f7bf2f2d95f34276b3b628ed08a6c359166..0abe6dc17204012569e49a77fab5790437ff0273 100644 (file)
@@ -1,25 +1,25 @@
 #include <stdio.h>
-#include <bits/libc-lock.h>
 #include <rpc/rpc.h>
 #include <assert.h>
 
-#include <bits/libc-lock.h>
-#include <bits/libc-tsd.h>
+#include <libc-lock.h>
+#include <libc-tsd.h>
+#include <shlib-compat.h>
+#include <libc-symbols.h>
 
-#ifdef _RPC_THREAD_SAFE_
 
 /* Variable used in non-threaded applications or for the first thread.  */
 static struct rpc_thread_variables __libc_tsd_RPC_VARS_mem;
-__libc_tsd_define (, struct rpc_thread_variables *, RPC_VARS)
+static __thread struct rpc_thread_variables *thread_rpc_vars
+        attribute_tls_model_ie;
 
 /*
  * Task-variable destructor
  */
-void __attribute__ ((section ("__libc_thread_freeres_fn")))
+void
 __rpc_thread_destroy (void)
 {
-       struct rpc_thread_variables *tvp
-         = __libc_tsd_get (struct rpc_thread_variables *, RPC_VARS);
+       struct rpc_thread_variables *tvp = thread_rpc_vars;
 
        if (tvp != NULL) {
                __rpc_thread_svc_cleanup ();
@@ -34,23 +34,18 @@ __rpc_thread_destroy (void)
                free (tvp->svc_pollfd_s);
                if (tvp != &__libc_tsd_RPC_VARS_mem)
                        free (tvp);
-               __libc_tsd_set (struct rpc_thread_variables *, RPC_VARS, NULL);
+               thread_rpc_vars = NULL;
        }
 }
-#ifdef _LIBC_REENTRANT
-text_set_element (__libc_thread_subfreeres, __rpc_thread_destroy);
-#endif
 text_set_element (__libc_subfreeres, __rpc_thread_destroy);
 
-
 /*
  * Initialize RPC multi-threaded operation
  */
 static void
 rpc_thread_multi (void)
 {
-  __libc_tsd_set (struct rpc_thread_variables *, RPC_VARS,
-                 &__libc_tsd_RPC_VARS_mem);
+  thread_rpc_vars = &__libc_tsd_RPC_VARS_mem;
 }
 
 
@@ -58,20 +53,15 @@ struct rpc_thread_variables *
 __rpc_thread_variables (void)
 {
        __libc_once_define (static, once);
-       struct rpc_thread_variables *tvp;
+       struct rpc_thread_variables *tvp = thread_rpc_vars;
 
-       tvp = __libc_tsd_get (struct rpc_thread_variables *, RPC_VARS);
        if (tvp == NULL) {
                __libc_once (once, rpc_thread_multi);
-               tvp = __libc_tsd_get (struct rpc_thread_variables *, RPC_VARS);
+               tvp = thread_rpc_vars;
                if (tvp == NULL) {
                        tvp = calloc (1, sizeof *tvp);
                        if (tvp != NULL)
-                               __libc_tsd_set (struct rpc_thread_variables *,
-                                               RPC_VARS, tvp);
-                       else
-                               tvp = __libc_tsd_get (struct rpc_thread_variables *,
-                                                     RPC_VARS);
+                               thread_rpc_vars = tvp;
                }
        }
        return tvp;
@@ -142,5 +132,3 @@ libc_hidden_def (__rpc_thread_svc_max_pollfd)
 #else
 libc_hidden_nolink_sunrpc (__rpc_thread_svc_max_pollfd, GLIBC_2_2_3)
 #endif
-
-#endif /* _RPC_THREAD_SAFE_ */