diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-02-12 23:30:10 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-02-12 23:30:10 +0100 |
commit | 44ae774bed1a75ea926590f1bc7c9f3328219832 (patch) | |
tree | 3108d37adf41b6ecabfe5a630239207e4d3503d5 /pthread/pt-initialize.c | |
parent | e484d190a82e1307e412460a5a83fe24b10d9d98 (diff) |
Stop using IS_IN
* pthread/pt-create.c: Use IS_IN (libpthread) instead of IS_IN_libpthread
* pthread/pt-initialize.c: Likewise.
* pthread/pt-internal.h: Likewise.
Diffstat (limited to 'pthread/pt-initialize.c')
-rw-r--r-- | pthread/pt-initialize.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pthread/pt-initialize.c b/pthread/pt-initialize.c index 831a63d..fc4e137 100644 --- a/pthread/pt-initialize.c +++ b/pthread/pt-initialize.c @@ -28,7 +28,7 @@ DEFINE_HOOK (__pthread_init, (void)); -#ifdef IS_IN_libpthread +#if IS_IN (libpthread) static const struct pthread_functions pthread_functions = { .ptr_pthread_attr_destroy = __pthread_attr_destroy, @@ -65,13 +65,13 @@ static const struct pthread_functions pthread_functions = .ptr_pthread_setcanceltype = __pthread_setcanceltype, .ptr___pthread_get_cleanup_stack = __pthread_get_cleanup_stack, }; -#endif /* IS_IN_libpthread */ +#endif /* IS_IN (libpthread) */ /* Initialize the pthreads library. */ void __pthread_init (void) { -#ifdef IS_IN_libpthread +#if IS_IN (libpthread) __libc_pthread_init(&pthread_functions); #endif RUN_HOOK (__pthread_init, ()); |