summaryrefslogtreecommitdiff
path: root/hurd/hurd/threadvar.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-10-20 17:57:20 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-10-20 17:57:20 +0200
commit1b8fb80cd64c4250c7ba7d50941699c96e2c8741 (patch)
tree4fb0cbc01a5007303ccb0bf2f7ad5bd1370cf4a4 /hurd/hurd/threadvar.h
parentf1cc02b3342389c782cadfc94a047ba6200b0eb8 (diff)
Use a macro instead of an inline for __libc_no_tls
Diffstat (limited to 'hurd/hurd/threadvar.h')
-rw-r--r--hurd/hurd/threadvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurd/threadvar.h b/hurd/hurd/threadvar.h
index 5dba21cef1..d5dd1419a6 100644
--- a/hurd/hurd/threadvar.h
+++ b/hurd/hurd/threadvar.h
@@ -114,6 +114,6 @@ __hurd_threadvar_location (enum __hurd_threadvar_index __index)
}
extern mach_port_t __hurd_reply_port0;
-#define __hurd_local_reply_port (*(__libc_no_tls() ? &__hurd_reply_port0 : &THREAD_SELF->reply_port))
+#define __hurd_local_reply_port (*(__LIBC_NO_TLS() ? &__hurd_reply_port0 : &THREAD_SELF->reply_port))
#endif /* hurd/threadvar.h */