.tutorial

git-svn-id: svn://ultimatepp.org/upp/trunk@10558 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-12-19 15:00:48 +00:00
parent 515af8ed37
commit 3bcdb56944
3 changed files with 41 additions and 12 deletions

View file

@ -44,7 +44,7 @@ void ConditionVariableTutorial()
t.Wait();
/// Important note: rarely thread can be resumed from `Wait` even if no other called
/// `Signal`. This is not a bud, but ^https://en.wikipedia.org/wiki/Spurious_wakeup:design
/// `Signal`. This is not a bug, but ^https://en.wikipedia.org/wiki/Spurious_wakeup:design
/// decision for performance reason^. In practice it only means that situation has to be
/// (re)checked after resume.
}