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/s390/s390-32 | |
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/s390/s390-32')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h index eb3b14a311..17ab562daa 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h @@ -109,13 +109,13 @@ L(pseudo_end): #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 |