You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2015/11/20 21:10:47 UTC

[2/3] incubator-mynewt-site git commit: Add synopsis for mutex

Add synopsis for mutex


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/69ceefdd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/69ceefdd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/69ceefdd

Branch: refs/heads/master
Commit: 69ceefdd6f91a8bd340aed3ffa6a4507ba76381b
Parents: 6e7bc7a
Author: wes3 <wi...@micosa.io>
Authored: Fri Nov 20 09:11:36 2015 -0800
Committer: wes3 <wi...@micosa.io>
Committed: Fri Nov 20 09:11:36 2015 -0800

----------------------------------------------------------------------
 docs/.DS_Store         | Bin 6148 -> 0 bytes
 docs/chapter4/mutex.md |   2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/69ceefdd/docs/.DS_Store
----------------------------------------------------------------------
diff --git a/docs/.DS_Store b/docs/.DS_Store
deleted file mode 100644
index 260ae9d..0000000
Binary files a/docs/.DS_Store and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/69ceefdd/docs/chapter4/mutex.md
----------------------------------------------------------------------
diff --git a/docs/chapter4/mutex.md b/docs/chapter4/mutex.md
index 86da970..0e0c329 100644
--- a/docs/chapter4/mutex.md
+++ b/docs/chapter4/mutex.md
@@ -1,7 +1,7 @@
 # Mutex
 
 
-Insert synopsis here
+Mutex is short for "mutual exclusion"; a mutex provides mutually exclusive access to a shared resource. A mutex provides *priority inheritance* in order to prevent *priority inversion*. Priority inversion occurs when a higher priority task is waiting on a resource owned by a lower priority task. Using a mutex, the lower priority task will inherit the highest priority of any task waiting on the mutex. 
 
 
 ## Description