add health warning on osl condition.

Change-Id: I24619afb8b1ea0410e95e60fe70b5166e18fab44
This commit is contained in:
Michael Meeks
2013-12-02 11:54:28 +00:00
parent ab4f01412b
commit 3c2e8e3484

View File

@ -29,7 +29,14 @@
namespace osl
{
/**
* Warning: the Condition abstraction is inadequate for any
* situation where there may be multiple threads setting,
* waiting, and resetting the same condition. It can only be
* used to synchronise interactions between two threads
* cf. lost wakeups in:
* http://www.cs.wustl.edu/~schmidt/win32-cv-1.html
*/
class Condition
{
public: