summaryrefslogtreecommitdiff
path: root/nptl/DESIGN-condvar.txt
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-17 10:16:36 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-17 10:16:36 +0000
commit5778033ffc5964450a20469a142202b5fdda36da (patch)
treee514b63668c382ac1d0a4c5bb3cb198fae6b3949 /nptl/DESIGN-condvar.txt
parent46a32546c924213322a0d0d5b6d636d2f58094c0 (diff)
Update.
* localedata/en_ZA: Changed %x for LC_TIME to use dd/mm/ccyy.
Diffstat (limited to 'nptl/DESIGN-condvar.txt')
-rw-r--r--nptl/DESIGN-condvar.txt2
1 files changed, 1 insertions, 1 deletions
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;
}