diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-07-28 18:52:06 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-07-28 18:52:06 +0000 |
commit | d20d507dbcc476061e23cad18e2fddfa27e87cea (patch) | |
tree | 84b92851ed157f6e6da1819a95225343720bf0d1 | |
parent | 58dc1c037ddd6ad2d0b02e8ae94a5131f0b08b72 (diff) | |
download | uClibc-alpine-d20d507dbcc476061e23cad18e2fddfa27e87cea.tar.bz2 uClibc-alpine-d20d507dbcc476061e23cad18e2fddfa27e87cea.tar.xz |
This should not be visible and currently the TLS access fails unless it is marked as 'static'. Will investigate this later.
-rw-r--r-- | libc/inet/rpc/rpc_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/rpc/rpc_thread.c b/libc/inet/rpc/rpc_thread.c index b42fab6e0..b38b2ac97 100644 --- a/libc/inet/rpc/rpc_thread.c +++ b/libc/inet/rpc/rpc_thread.c @@ -22,7 +22,7 @@ libc_hidden_proto(__rpc_thread_svc_max_pollfd) /* Variable used in non-threaded applications or for the first thread. */ static struct rpc_thread_variables __libc_tsd_RPC_VARS_mem; -__libc_tsd_define (, RPC_VARS) +__libc_tsd_define (static, RPC_VARS) /* * Task-variable destructor |