summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-08-23 13:14:20 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-08-23 13:14:20 +0200
commit9295bc48dd22a8358a595b9cebffdfc09d4166cd (patch)
tree4ba7d6ca775b2a4062d9ccd8b2b14849a9a35f4d
parent76ae117cd745eb783d2f680e136c19628fa1187e (diff)
Missing NOT_IN_ -> IS_IN conversion
* sysdeps/pthread/bits/libc-lockP.h: Use IS_IN (libc) instead of !defined NOT_IN_libc.
-rw-r--r--sysdeps/pthread/bits/libc-lockP.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/pthread/bits/libc-lockP.h b/sysdeps/pthread/bits/libc-lockP.h
index 65878f2..6c5db09 100644
--- a/sysdeps/pthread/bits/libc-lockP.h
+++ b/sysdeps/pthread/bits/libc-lockP.h
@@ -37,7 +37,7 @@
#endif
/* Call thread functions through the function pointer table. */
-#if defined SHARED && !defined NOT_IN_libc
+#if defined SHARED && IS_IN (libc)
# define PTFAVAIL(NAME) __libc_pthread_functions_init
# define __libc_ptf_call(FUNC, ARGS, ELSE) \
(__libc_pthread_functions_init ? PTHFCT_CALL (ptr_##FUNC, ARGS) : ELSE)