diff options
author | Roland McGrath <roland@gnu.org> | 2003-06-25 03:22:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-06-25 03:22:03 +0000 |
commit | eef4a9f3e1ca45870649c2b133e2097c607770e3 (patch) | |
tree | ee3a4ed68fdb080f8a8469ebf961d9f5de615800 /linuxthreads/sysdeps/unix | |
parent | 1775abf061fd7a1868bb7e38fad8cb0a27f443fb (diff) | |
download | glibc-eef4a9f3e1ca45870649c2b133e2097c607770e3.tar.gz glibc-eef4a9f3e1ca45870649c2b133e2097c607770e3.tar.xz glibc-eef4a9f3e1ca45870649c2b133e2097c607770e3.zip |
* sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Support cancellation
in librt. * sysdeps/unix/sysv/linux/alpha/Makefile (libpthread-routines):
Diffstat (limited to 'linuxthreads/sysdeps/unix')
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h b/linuxthreads/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h index e6d0cca252..e7f2704b63 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h +++ b/linuxthreads/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h @@ -23,7 +23,7 @@ # include <linuxthreads/internals.h> #endif -#if !defined NOT_IN_libc || defined IS_IN_libpthread +#if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt # define _IMM12 #-12 # define _IMM16 #-16 @@ -92,10 +92,13 @@ # define __local_enable_asynccancel __pthread_enable_asynccancel # define __local_disable_asynccancel __pthread_disable_asynccancel # define __local_multiple_threads __pthread_multiple_threads -# else +# elif !defined NOT_IN_libc # define __local_enable_asynccancel __libc_enable_asynccancel # define __local_disable_asynccancel __libc_disable_asynccancel # define __local_multiple_threads __libc_multiple_threads +# else +# define __local_enable_asynccancel __librt_enable_asynccancel +# define __local_disable_asynccancel __librt_disable_asynccancel # endif # define CENABLE \ |