Fix typo in qwaitcondition_unix.cpp

Change-Id: Ifc1fdaaa05275b6f68a868a2fc8ccc332e5355ce
Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
This commit is contained in:
David Faure 2013-09-02 10:58:31 +02:00 committed by The Qt Project
parent 75823d9c0b
commit 5bd6a4b71a

View File

@ -136,7 +136,7 @@ public:
code = pthread_cond_wait(&cond, &mutex);
}
if (code == 0 && wakeups == 0) {
// many vendors warn of spurios wakeups from
// many vendors warn of spurious wakeups from
// pthread_cond_wait(), especially after signal delivery,
// even though POSIX doesn't allow for it... sigh
continue;