Merge "Mutex: Note that STL is generally prefered" into nyc-dev

am: a30a626

* commit 'a30a6263d632a7d2dedc4f09c6707ab20df3fb1a':
  Mutex: Note that STL is generally prefered

Change-Id: I69eec173bf9679dc592987bd78cc8edcc81a1fbb
This commit is contained in:
Greg Kaiser 2016-04-06 13:06:00 +00:00 committed by android-build-merger
commit e60b407d43
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,10 @@ namespace android {
class Condition;
/*
* NOTE: This class is for code that builds on Win32. Its usage is
* deprecated for code which doesn't build for Win32. New code which
* doesn't build for Win32 should use std::mutex and std::lock_guard instead.
*
* Simple mutex class. The implementation is system-dependent.
*
* The mutex must be unlocked by the thread that locked it. They are not