From 858ee15decf0c6d6ff74ae5c1baae1652b3b5e84 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 19 Feb 2007 05:44:33 +0000 Subject: * sysdeps/unix/closedir.c: Outside libc don't use locking. * sysdeps/unix/opendir.c: Likewise. * sysdeps/unix/readdir.c: Likewise. --- nptl/sysdeps/pthread/pthread-functions.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'nptl') diff --git a/nptl/sysdeps/pthread/pthread-functions.h b/nptl/sysdeps/pthread/pthread-functions.h index f8c1e92..ff1e6e9 100644 --- a/nptl/sysdeps/pthread/pthread-functions.h +++ b/nptl/sysdeps/pthread/pthread-functions.h @@ -97,16 +97,22 @@ struct pthread_functions void (*ptr__nptl_deallocate_tsd) (void); int (*ptr__nptl_setxid) (struct xid_command *); void (*ptr_freeres) (void); + void (*ptr_wait_lookup_done) (int); }; /* Variable in libc.so. */ extern struct pthread_functions __libc_pthread_functions attribute_hidden; extern int __libc_pthread_functions_init attribute_hidden; -#define PTHFCT_CALL(fct, params) \ +#ifdef PTR_DEMANGLE +# define PTHFCT_CALL(fct, params) \ + __libc_pthread_functions.fct params +#else +# define PTHFCT_CALL(fct, params) \ ({ __typeof (__libc_pthread_functions.fct) __p; \ __p = __libc_pthread_functions.fct; \ PTR_DEMANGLE (__p); \ __p params; }) +#endif #endif /* pthread-functions.h */ -- cgit v1.1