From 5778033ffc5964450a20469a142202b5fdda36da Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 17 Mar 2003 10:16:36 +0000 Subject: Update. * localedata/en_ZA: Changed %x for LC_TIME to use dd/mm/ccyy. --- nptl/DESIGN-condvar.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nptl/DESIGN-condvar.txt') diff --git a/nptl/DESIGN-condvar.txt b/nptl/DESIGN-condvar.txt index 7202e414ef..4a8212bae1 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; } -- cgit v1.2.3