File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class Mutex;
41
41
* @code
42
42
* void foo(Mutex &m) {
43
43
* ScopedMutexLock lock(m);
44
- * // Code in this block will be protected by Mutex lock
44
+ * // Mutex lock protects code in this block
45
45
* }
46
46
* @endcode
47
47
*/
@@ -56,7 +56,7 @@ typedef mbed::ScopedLock<Mutex> ScopedMutexLock;
56
56
This is for example used to protect access to a shared resource.
57
57
58
58
@note
59
- Memory considerations: The mutex control structures will be created on current thread's stack, both for the mbed OS
59
+ Memory considerations: The mutex control structures will be created on current thread's stack, both for the Mbed OS
60
60
and underlying RTOS objects (static or dynamic RTOS memory pools are not being used).
61
61
*/
62
62
class Mutex : private mbed ::NonCopyable<Mutex> {
You can’t perform that action at this time.
0 commit comments