diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-10-29 21:50:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-10-29 21:50:49 +0000 |
commit | 6e6278064ab5f08b5e920f9f74b33cb2b7f42925 (patch) | |
tree | df0c7e2c3ff4ac29a8b22d8be49a4e146196f1a2 /nptl/sysdeps/unix/sysv/linux/powerpc | |
parent | b94817f9139b92e4bde284a63b1b6ec570055d38 (diff) | |
download | glibc-6e6278064ab5f08b5e920f9f74b33cb2b7f42925.tar glibc-6e6278064ab5f08b5e920f9f74b33cb2b7f42925.tar.gz glibc-6e6278064ab5f08b5e920f9f74b33cb2b7f42925.tar.bz2 glibc-6e6278064ab5f08b5e920f9f74b33cb2b7f42925.zip |
* po/sv.po: Update from translation team.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/powerpc')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h | 14 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h index e40388d475..3752abc870 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h @@ -124,13 +124,13 @@ #elif !defined __ASSEMBLER__ -# 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 diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h index cbc3fa70a1..707765ab58 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h @@ -113,13 +113,13 @@ #elif !defined __ASSEMBLER__ -# 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 |