From: Ulrich Drepper Date: Mon, 17 Mar 2003 10:16:36 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_3~1194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5778033ffc5964450a20469a142202b5fdda36da;p=thirdparty%2Fglibc.git Update. * localedata/en_ZA: Changed %x for LC_TIME to use dd/mm/ccyy. --- diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 2c19c8385ad..b5ca9ef2875 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,6 +1,6 @@ 2003-03-17 Ulrich Drepper - * localedata/en_ZA: hanged %x for LC_TIME to use dd/mm/ccyy. + * localedata/en_ZA: Changed %x for LC_TIME to use dd/mm/ccyy. Added ^ to LC_MESSAGES regex "^[yY].*". Confirmed LC_PAPER adn LC_MEASUREMENT settings. Added country and language names to LC_ADDRESS. diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 45ecd028b01..03c461222ab 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,11 @@ +2003-03-17 Ulrich Drepper + + * sysdeps/pthread/pthread_cond_wait.c: Correct exit criteria. + * sysdeps/pthread/pthread_cond_timedwait.c: Likewise. + * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise. + * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Likewise. + Patch by Ewald Snel . + 2003-03-16 Roland McGrath * tst-fork4.c: Include . @@ -7,6 +15,10 @@ 2003-03-16 Ulrich Drepper + * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S + (__lll_mutex_timedlock_wait): Correct expected value after + spurious wakeup. Otherwise we would never wait again. + * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Work around red zone versus inline asm stupidity. Use correct instructions. diff --git a/nptl/DESIGN-condvar.txt b/nptl/DESIGN-condvar.txt index 7202e414efc..4a8212bae1d 100644 --- a/nptl/DESIGN-condvar.txt +++ b/nptl/DESIGN-condvar.txt @@ -65,7 +65,7 @@ cond_timedwait(cv, mutex, timeout): val = cv->wakeup_seq; - if (cv->woken_seq >= seq && cv->woken_seq < val) { + if (val > seq && cv->woken_seq < val) { ret = 0; break; }