diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-18 11:25:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-18 11:25:37 +0000 |
commit | d5cb838958b610de0bef12722860030eec964aaf (patch) | |
tree | bd0337f638429219ab9b0e2a246a5631588d0232 | |
parent | 86a9ee5e87cc084ccce131cd51166c98ea87f28f (diff) | |
download | glibc-d5cb838958b610de0bef12722860030eec964aaf.tar glibc-d5cb838958b610de0bef12722860030eec964aaf.tar.gz glibc-d5cb838958b610de0bef12722860030eec964aaf.tar.bz2 glibc-d5cb838958b610de0bef12722860030eec964aaf.zip |
Update.
2003-03-18 Ulrich Drepper <drepper@redhat.com>
* Versions.def: Add GLIBC_2.3.3 for libpthread.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | nptl/ChangeLog | 1 | ||||
-rw-r--r-- | nptl/pthread_cond_init.c | 9 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,7 @@ +2003-03-18 Ulrich Drepper <drepper@redhat.com> + + * Versions.def: Add GLIBC_2.3.3 for libpthread. + 2003-03-17 Ulrich Drepper <drepper@redhat.com> * sysdeps/generic/libc-start.c [!SHARED && diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 579e985298..20ae05d91b 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -10,6 +10,7 @@ * pthread_condattr_getpshared.c: Adjust for struct pthread_condattr change. * pthread_condattr_setpshared.c: Likewise. + * pthread_cond_init.c (__pthread_cond_init): Initialized __clock field. * sysdeps/unix/sysv/linux/lowlevelcond.sym: Add cond_clock symbol. * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h (pthread_cond_t): Add __clock field. diff --git a/nptl/pthread_cond_init.c b/nptl/pthread_cond_init.c index e079ae9235..12a38fb492 100644 --- a/nptl/pthread_cond_init.c +++ b/nptl/pthread_cond_init.c @@ -17,7 +17,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include <shlib-compat.h> +#include <shlib-compat.h> #include "pthreadP.h" @@ -26,11 +26,12 @@ __pthread_cond_init (cond, cond_attr) pthread_cond_t *cond; const pthread_condattr_t *cond_attr; { - /* Note that we don't need the COND-ATTR. It contains only the - PSHARED flag which is unimportant here since conditional - variables are always usable in multiple processes. */ + /* Note that we don't need the PSHARED information from COND-ATTR. + Conditional variables are always usable in multiple processes. */ + struct pthread_condattr *icond_attr = (struct pthread_condattr *) cond_attr; cond->__data.__lock = LLL_MUTEX_LOCK_INITIALIZER; + cond->__data.__clock = (icond_attr->value & 0xfe) >> 1; cond->__data.__total_seq = 0; cond->__data.__wakeup_seq = 0; cond->__data.__woken_seq = 0; |