(RTLD_SINGLE_THREAD_P): Define.

(SINGLE_THREAD_P): Define to 1 if IS_IN_rtld.
This commit is contained in:
Ulrich Drepper 2006-10-29 21:48:06 +00:00
parent 069ba66371
commit cf0494f3e7
1 changed files with 7 additions and 7 deletions

View File

@ -163,13 +163,13 @@ extern int __local_multiple_threads attribute_hidden;
#else
# ifdef IS_IN_rtld
# define SINGLE_THREAD_P \
__builtin_expect (THREAD_GETMEM (THREAD_SELF, \
header.multiple_threads) == 0, 1)
# else
# define SINGLE_THREAD_P (1)
# endif
# define SINGLE_THREAD_P (1)
# define NO_CANCELLATION 1
#endif
#ifndef __ASSEMBLER__
# define RTLD_SINGLE_THREAD_P \
__builtin_expect (THREAD_GETMEM (THREAD_SELF, \
header.multiple_threads) == 0, 1)
#endif