diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/libc_multiple_threads.c | 2 | ||||
-rw-r--r-- | nptl/pthreadP.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nptl/libc_multiple_threads.c b/nptl/libc_multiple_threads.c index acf3594d71..0361f6c273 100644 --- a/nptl/libc_multiple_threads.c +++ b/nptl/libc_multiple_threads.c @@ -18,7 +18,7 @@ #include <pthreadP.h> -#ifndef NOT_IN_libc +#if IS_IN (libc) # ifndef TLS_MULTIPLE_THREADS_IN_TCB /* Variable set to a nonzero value either if more than one thread runs or ran, or if a single-threaded process is trying to cancel itself. See diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 318505635f..a26a68b46a 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -292,7 +292,7 @@ __do_cancel (void) #define CANCEL_RESET(oldtype) \ __pthread_disable_asynccancel (oldtype) -#if !defined NOT_IN_libc +#if IS_IN (libc) /* Same as CANCEL_ASYNC, but for use in libc.so. */ # define LIBC_CANCEL_ASYNC() \ __libc_enable_asynccancel () |