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:46 UTC

[1/3] incubator-mynewt-site git commit: Guinea Pig doc change

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/master 2e79c541e -> 4c2fc3856


Guinea Pig doc change


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/6e7bc7ab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/6e7bc7ab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/6e7bc7ab

Branch: refs/heads/master
Commit: 6e7bc7aba224e7208bfc9df1efc3426ad838099f
Parents: 1c43668
Author: wes3 <wi...@micosa.io>
Authored: Thu Nov 19 10:04:07 2015 -0800
Committer: wes3 <wi...@micosa.io>
Committed: Thu Nov 19 10:04:07 2015 -0800

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


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/6e7bc7ab/.DS_Store
----------------------------------------------------------------------
diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..de5fc53
Binary files /dev/null and b/.DS_Store differ

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

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/6e7bc7ab/docs/chapter1/try_markdown.md
----------------------------------------------------------------------
diff --git a/docs/chapter1/try_markdown.md b/docs/chapter1/try_markdown.md
index 4d6d7b3..c4b270f 100644
--- a/docs/chapter1/try_markdown.md
+++ b/docs/chapter1/try_markdown.md
@@ -18,4 +18,4 @@
 
 * Click on "Help" in Mou and then on "Markdown Syntax Reference".
 
-* <font color="red"> Substitute a sentence of your own here </font>
\ No newline at end of file
+* <font color="red"> Guinea Pig!!! </font>
\ No newline at end of file


[3/3] incubator-mynewt-site git commit: resolving conflict in docs/chapter1/try_markdown.md

Posted by ad...@apache.org.
resolving conflict in docs/chapter1/try_markdown.md


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/4c2fc385
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/4c2fc385
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/4c2fc385

Branch: refs/heads/master
Commit: 4c2fc38568deb29c0cf7fb42b8589f27216f0833
Parents: 2e79c54 69ceefd
Author: aditihilbert <ad...@runtime.io>
Authored: Fri Nov 20 12:07:47 2015 -0800
Committer: aditihilbert <ad...@runtime.io>
Committed: Fri Nov 20 12:07:47 2015 -0800

----------------------------------------------------------------------
 docs/chapter4/mutex.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



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

Posted by ad...@apache.org.
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