diff options
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurd/signal.h | 2 | ||||
-rw-r--r-- | hurd/hurd/threadvar.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hurd/hurd/signal.h b/hurd/hurd/signal.h index eb9b0ca423..f84c4ef485 100644 --- a/hurd/hurd/signal.h +++ b/hurd/hurd/signal.h @@ -180,7 +180,7 @@ _hurd_critical_section_lock (void) struct hurd_sigstate *ss; #ifdef __LIBC_NO_TLS - if (__LIBC_NO_TLS()) + if (__LIBC_NO_TLS ()) /* TLS is currently initializing, no need to enter critical section. */ return NULL; #endif diff --git a/hurd/hurd/threadvar.h b/hurd/hurd/threadvar.h index 89918e34c3..414e452db5 100644 --- a/hurd/hurd/threadvar.h +++ b/hurd/hurd/threadvar.h @@ -49,6 +49,6 @@ extern mach_port_t __hurd_reply_port0; /* This returns either the TLS reply port variable, or a single-thread variable when TLS is not initialized yet. */ -#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 */ |