From d5cb838958b610de0bef12722860030eec964aaf Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 18 Mar 2003 11:25:37 +0000 Subject: Update. 2003-03-18 Ulrich Drepper * Versions.def: Add GLIBC_2.3.3 for libpthread. --- nptl/pthread_cond_init.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'nptl/pthread_cond_init.c') 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 +#include #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; -- cgit v1.2.3