diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:37:17 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:37:17 +0000 |
| commit | f06723b9c4457061dcedb271a83b9ea541920a72 (patch) | |
| tree | 526e86476ac2eb4378bf28b641e0fb382ed1f2fd /libc/inet/rpc/rpc_thread.c | |
| parent | dd4c03d796f73e008d93ade62655deb70aaaf34a (diff) | |
| download | uClibc-alpine-f06723b9c4457061dcedb271a83b9ea541920a72.tar.bz2 uClibc-alpine-f06723b9c4457061dcedb271a83b9ea541920a72.tar.xz | |
Rename option PTHREADS_NATIVE to be UCLIBC_HAS_THREADS_NATIVE instead. What a stupid name to start with. What idiot thought of that?
Diffstat (limited to 'libc/inet/rpc/rpc_thread.c')
| -rw-r--r-- | libc/inet/rpc/rpc_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/rpc/rpc_thread.c b/libc/inet/rpc/rpc_thread.c index be820599b..e3a1c40b2 100644 --- a/libc/inet/rpc/rpc_thread.c +++ b/libc/inet/rpc/rpc_thread.c @@ -9,7 +9,7 @@ /* Variable used in non-threaded applications or for the first thread. */ static struct rpc_thread_variables __libc_tsd_RPC_VARS_mem; -#ifdef __PTHREADS_NATIVE__ +#ifdef __UCLIBC_HAS_THREADS_NATIVE__ static struct rpc_thread_variables *__libc_tsd_RPC_VARS = &__libc_tsd_RPC_VARS_mem; #else @@ -82,7 +82,7 @@ __rpc_thread_variables (void) if (tvp != NULL) __libc_tsd_set (RPC_VARS, tvp); else -#ifdef __PTHREADS_NATIVE__ +#ifdef __UCLIBC_HAS_THREADS_NATIVE__ tvp = __libc_tsd_RPC_VARS; #else tvp = __libc_tsd_RPC_VARS_data; |
