diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-31 05:50:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-31 05:50:02 +0000 |
commit | b5567b2af66e2be232c0db9bf189424c039465d2 (patch) | |
tree | 9273a3119bdb9e10fca7376a2b933bc41eded931 /linuxthreads | |
parent | b86120ed685c140c3d19386d463d6efba436ab92 (diff) | |
download | glibc-b5567b2af66e2be232c0db9bf189424c039465d2.tar.gz glibc-b5567b2af66e2be232c0db9bf189424c039465d2.tar.xz glibc-b5567b2af66e2be232c0db9bf189424c039465d2.zip |
Update.
2000-03-29 Jes Sorensen <jes@pcatls01.cern.ch> * malloc/malloc.c: Declare bit flags UL so that they will not default to int size when being inverted. 2000-03-29 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/arm/errlist.c: Use shlib-compat macros. * sysdeps/unix/sysv/linux/arm/siglist.c: Likewise. 2000-03-29 Andreas Jaeger <aj@suse.de>, Ralf Baechle <ralf@uni-koblenz.de> * Makeconfig: Introduce new variable SHARED to mark code used in the shared library. * elf/dl-close.c: Use it instead of PIC. * elf/dl-load.c: Likewise. * elf/dl-open.c: Likewise. * hurd/geteuids.c: Likewise. * include/libc-symbols.h: Likewise. * include/shlib-compat.h: Likewise. * libio/freopen.c: Likewise. * linuxthreads/cancel.c: Likewise. * linuxthreads/pthread.c: Likewise. * linuxthreads/wrapsyscall.c: Likewise. * nss/nsswitch.c: Likewise. * stdio-common/vfprintf.c: Likewise. * sysdeps/arm/init-first.c: Likewise. * sysdeps/i386/init-first.c: Likewise * sysdeps/generic/init-first.c: Likewise. * sysdeps/generic/libc-start.c: Likewise. * sysdeps/mips/init-first.c: Likewise. * sysdeps/powerpc/elf/libc-start.c: Likewise. * sysdeps/unix/sysv/linux/init-first.c: Likewise. * sysdeps/unix/sysv/linux/arm/siglist.c: Likewise. * sysdeps/unix/sysv/linux/arm/errlist.c: Likewise. * sysdeps/unix/sysv/linux/i386/chown.c: Likewise. * sysdeps/mips/machine-gmon.h (asm): Use __PIC__ as check.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/cancel.c | 2 | ||||
-rw-r--r-- | linuxthreads/pthread.c | 2 | ||||
-rw-r--r-- | linuxthreads/wrapsyscall.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/linuxthreads/cancel.c b/linuxthreads/cancel.c index 8fd8c1e60f..e1e887e0f9 100644 --- a/linuxthreads/cancel.c +++ b/linuxthreads/cancel.c @@ -162,7 +162,7 @@ void __pthread_perform_cleanup(void) c->__routine(c->__arg); } -#ifndef PIC +#ifndef SHARED /* We need a hook to force the cancelation wrappers to be linked in when static libpthread is used. */ extern const int __pthread_provide_wrappers; diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index 6ac7bc9170..f8df39db02 100644 --- a/linuxthreads/pthread.c +++ b/linuxthreads/pthread.c @@ -871,7 +871,7 @@ void __pthread_message(char * fmt, ...) #endif -#ifndef PIC +#ifndef SHARED /* We need a hook to force the cancelation wrappers to be linked in when static libpthread is used. */ extern const int __pthread_provide_wrappers; diff --git a/linuxthreads/wrapsyscall.c b/linuxthreads/wrapsyscall.c index a8ab857d8a..7d3f8ac483 100644 --- a/linuxthreads/wrapsyscall.c +++ b/linuxthreads/wrapsyscall.c @@ -31,7 +31,7 @@ #include <sys/socket.h> -#ifndef PIC +#ifndef SHARED /* We need a hook to force this file to be linked in when static libpthread is used. */ const int __pthread_provide_wrappers = 0; |