diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-01-16 17:23:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-01-16 17:23:51 +0000 |
commit | 6bae8725fff4129b5a97c0b8a73fd2a711bdf63e (patch) | |
tree | 18121878322a88270d33a8b9efcc7a6d29cb0534 | |
parent | 209dabb4d66bab027f398a49c6b300383c6ca6a2 (diff) | |
download | glibc-6bae8725fff4129b5a97c0b8a73fd2a711bdf63e.tar.gz glibc-6bae8725fff4129b5a97c0b8a73fd2a711bdf63e.tar.xz glibc-6bae8725fff4129b5a97c0b8a73fd2a711bdf63e.zip |
Update.
2004-01-16 Ulrich Drepper <drepper@redhat.com> * pthread_getattr_np.c: Include ldsodefs.h. * allocatestack.c: Don't declare __libc_stack_end. * init.c (__pthread_initialize_minimal_internal): Likewise. * pthread_getattr_np.c (pthread_getattr_np): Likewise.
-rw-r--r-- | nptl/ChangeLog | 10 | ||||
-rw-r--r-- | nptl/pthread_getattr_np.c | 1 |
2 files changed, 8 insertions, 3 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 3409861329..05b2a37eb6 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,8 +1,12 @@ +2004-01-16 Ulrich Drepper <drepper@redhat.com> + + * pthread_getattr_np.c: Include ldsodefs.h. + 2004-01-16 Richard Henderson <rth@redhat.com> - * allocatestack.c: Don't declare __libc_stack_end. - * init.c (__pthread_initialize_minimal_internal): Likewise. - * pthread_getattr_np.c (pthread_getattr_np): Likewise. + * allocatestack.c: Don't declare __libc_stack_end. + * init.c (__pthread_initialize_minimal_internal): Likewise. + * pthread_getattr_np.c (pthread_getattr_np): Likewise. 2004-01-15 Richard Henderson <rth@redhat.com> diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c index 769f4f5e31..0925ced37f 100644 --- a/nptl/pthread_getattr_np.c +++ b/nptl/pthread_getattr_np.c @@ -27,6 +27,7 @@ #include <sys/resource.h> #include "pthreadP.h" #include <lowlevellock.h> +#include <ldsodefs.h> int |