Browse Source

Fix use of __pthread_once, and fix rpc usage of thread local
storage....
-Erik

Eric Andersen 22 years ago
parent
commit
ac1a542ba0
2 changed files with 1 additions and 10 deletions
  1. 0 10
      libc/inet/rpc/rpc_thread.c
  2. 1 0
      libc/misc/pthread/weaks.c

+ 0 - 10
libc/inet/rpc/rpc_thread.c

@@ -35,12 +35,8 @@ __rpc_thread_destroy (void)
 }
 
 
-#warning fix multithreaded initialization...
-#if 0
 extern int __pthread_once (pthread_once_t *__once_control,
 			   void (*__init_routine) (void));
-asm (".weak __pthread_once");
-
 
 # define __libc_once_define(CLASS, NAME) \
   CLASS pthread_once_t NAME = PTHREAD_ONCE_INIT
@@ -86,12 +82,6 @@ __rpc_thread_variables (void)
 	}
 	return tvp;
 }
-#else
-struct rpc_thread_variables * __rpc_thread_variables (void)
-{
-    return __libc_tsd_RPC_VARS_data;
-}
-#endif
 
 
 /* Global variables If we're single-threaded, or if this is the first

+ 1 - 0
libc/misc/pthread/weaks.c

@@ -77,6 +77,7 @@ weak_alias (__pthread_return_0, pthread_rwlockattr_init)
 weak_alias (__pthread_return_0, pthread_rwlockattr_destroy)
 weak_alias (__pthread_return_0, pthread_rwlockattr_setpshared)
 weak_alias (__pthread_return_0, pthread_rwlockattr_getpshared)
+weak_alias (__pthread_return_0, __pthread_once)
 
 
 /* Those are pthread functions which return 1 if successful. */