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 2016/06/22 18:16:21 UTC

[1/9] incubator-mynewt-site git commit: Updated the list of functions to include descriptions

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/master 1c459525a -> 3e5fb814e


Updated the list of functions to include descriptions


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

Branch: refs/heads/master
Commit: 214e9a7cd0d2185f7cec3be4f41404462e0a4ed5
Parents: cbbac7b
Author: briangiori <br...@gmail.com>
Authored: Tue Jun 21 17:24:26 2016 -0700
Committer: briangiori <br...@gmail.com>
Committed: Tue Jun 21 17:24:26 2016 -0700

----------------------------------------------------------------------
 .../os/core_os/context_switch/context_switch.md | 23 ++++++++++----------
 1 file changed, 12 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/214e9a7c/docs/os/core_os/context_switch/context_switch.md
----------------------------------------------------------------------
diff --git a/docs/os/core_os/context_switch/context_switch.md b/docs/os/core_os/context_switch/context_switch.md
index 97716d6..95a77f0 100644
--- a/docs/os/core_os/context_switch/context_switch.md
+++ b/docs/os/core_os/context_switch/context_switch.md
@@ -27,14 +27,15 @@ Scheduler has a CPU architecture specific component; this code is responsible fo
 
 The functions available in context_switch are:
 
-* [os_sched](os_sched.md)
-* [os_arch_ctx_sw](os_arch_ctx_sw.md)
-* [os_sched_ctx_sw_hook](os_sched_ctx_sw_hook.md)
-* [os_sched_get_current_task](os_sched_get_current_task.md)
-* [os_sched_insert](os_sched_insert.md)
-* [os_sched_next_task](os_sched_next_task.md)
-* [os_sched_os_timer_exp](os_sched_os_timer_exp.md)
-* [os_sched_resort](os_sched_resort.md)
-* [os_sched_set_current_task](os_sched_set_current_task.md)
-* [os_sched_sleep](os_sched_sleep.md)
-* [os_sched_wakeup](os_sched_wakeup.md)
+| **Function** | **Description** |
+| [os_sched](os_sched.md) | Performs context switch if needed. |
+| [os_arch_ctx_sw](os_arch_ctx_sw.md) | Change the state of task given task to *running*. |
+| [os_sched_ctx_sw_hook](os_sched_ctx_sw_hook.md) | Performs task accounting when context switching. |
+| [os_sched_get_current_task](os_sched_get_current_task.md) | Returns the pointer to task which is currently *running*. |
+| [os_sched_insert](os_sched_insert.md) | Insert task into scheduler's ready to run list. |
+| [os_sched_next_task](os_sched_next_task.md) | Returns the pointer to highest priority task from the list which are *ready to run*. |
+| [os_sched_os_timer_exp](os_sched_os_timer_exp.md) | Inform scheduler that OS time has moved forward. |
+| [os_sched_resort](os_sched_resort.md) | Inform scheduler that the priority of the given task has changed and the *ready to run* list should be re-sorted. |
+| [os_sched_set_current_task](os_sched_set_current_task.md) | Sets the given task to *running*. |
+| [os_sched_sleep](os_sched_sleep.md) | The given task's state is changed from *ready to run* to *sleeping*. |
+| [os_sched_wakeup](os_sched_wakeup.md) | Called to make task *ready to run*. If task is *sleeping*, it is woken up. |


[5/9] incubator-mynewt-site git commit: Fixed new scheduler function table

Posted by ad...@apache.org.
Fixed new scheduler function table


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

Branch: refs/heads/master
Commit: 76e76065ca94440bb07eeb3d1c011792ec34c783
Parents: 9e6cd25
Author: briangiori <br...@gmail.com>
Authored: Tue Jun 21 17:27:56 2016 -0700
Committer: = <=>
Committed: Wed Jun 22 10:00:20 2016 -0700

----------------------------------------------------------------------
 docs/os/core_os/context_switch/context_switch.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/76e76065/docs/os/core_os/context_switch/context_switch.md
----------------------------------------------------------------------
diff --git a/docs/os/core_os/context_switch/context_switch.md b/docs/os/core_os/context_switch/context_switch.md
index 95a77f0..b507149 100644
--- a/docs/os/core_os/context_switch/context_switch.md
+++ b/docs/os/core_os/context_switch/context_switch.md
@@ -28,6 +28,7 @@ Scheduler has a CPU architecture specific component; this code is responsible fo
 The functions available in context_switch are:
 
 | **Function** | **Description** |
+|-----------|-------------|
 | [os_sched](os_sched.md) | Performs context switch if needed. |
 | [os_arch_ctx_sw](os_arch_ctx_sw.md) | Change the state of task given task to *running*. |
 | [os_sched_ctx_sw_hook](os_sched_ctx_sw_hook.md) | Performs task accounting when context switching. |


[8/9] incubator-mynewt-site git commit: Merge branch 'develop' Merge Brian's change to scheduler function table in pull request #93"

Posted by ad...@apache.org.
Merge branch 'develop'
Merge Brian's change to scheduler function table in pull request #93"


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

Branch: refs/heads/master
Commit: c45eba7b9b7809f9ac9a47443b86e41a2a98d824
Parents: 1c45952 5872b57
Author: aditihilbert <ad...@runtime.io>
Authored: Wed Jun 22 11:13:50 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Jun 22 11:13:50 2016 -0700

----------------------------------------------------------------------
 .../os/core_os/context_switch/context_switch.md | 24 +++++++++++---------
 mkdocs.yml                                      |  2 +-
 2 files changed, 14 insertions(+), 12 deletions(-)
----------------------------------------------------------------------



[4/9] incubator-mynewt-site git commit: changed version in mkdocs.yml to v0_9_0 on master branch

Posted by ad...@apache.org.
changed version in mkdocs.yml to v0_9_0 on master branch


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

Branch: refs/heads/master
Commit: 903745407af6794fd600249e86a31884479c62ff
Parents: 51d8b8b
Author: aditihilbert <ad...@runtime.io>
Authored: Mon Jun 20 14:30:08 2016 -0700
Committer: = <=>
Committed: Wed Jun 22 10:00:20 2016 -0700

----------------------------------------------------------------------
 mkdocs.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/90374540/mkdocs.yml
----------------------------------------------------------------------
diff --git a/mkdocs.yml b/mkdocs.yml
index 984a6a8..e04d0eb 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -374,7 +374,7 @@ markdown_extensions:
         pygments_style: xcode
 
 extra:
-    version: 'none'
+    version: 'v0_9_0'
     versions:
         -   label: 'develop'
             branch: 'develop'


[6/9] incubator-mynewt-site git commit: Merge branch 'master' of https://github.com/bgiori/incubator-mynewt-site

Posted by ad...@apache.org.
Merge branch 'master' of https://github.com/bgiori/incubator-mynewt-site

This closes #93


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

Branch: refs/heads/master
Commit: 2576c1f42d5d995423091cec7db0078a8cdd3bac
Parents: 76e7606 6881860
Author: = <=>
Authored: Wed Jun 22 10:02:24 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Jun 22 11:09:27 2016 -0700

----------------------------------------------------------------------

----------------------------------------------------------------------



[2/9] incubator-mynewt-site git commit: Fixed new scheduler function table

Posted by ad...@apache.org.
Fixed new scheduler function table


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

Branch: refs/heads/master
Commit: 68818605f0721e56ea345054edaf950ff6f2039d
Parents: 214e9a7
Author: briangiori <br...@gmail.com>
Authored: Tue Jun 21 17:27:56 2016 -0700
Committer: briangiori <br...@gmail.com>
Committed: Tue Jun 21 17:27:56 2016 -0700

----------------------------------------------------------------------
 docs/os/core_os/context_switch/context_switch.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/68818605/docs/os/core_os/context_switch/context_switch.md
----------------------------------------------------------------------
diff --git a/docs/os/core_os/context_switch/context_switch.md b/docs/os/core_os/context_switch/context_switch.md
index 95a77f0..b507149 100644
--- a/docs/os/core_os/context_switch/context_switch.md
+++ b/docs/os/core_os/context_switch/context_switch.md
@@ -28,6 +28,7 @@ Scheduler has a CPU architecture specific component; this code is responsible fo
 The functions available in context_switch are:
 
 | **Function** | **Description** |
+|-----------|-------------|
 | [os_sched](os_sched.md) | Performs context switch if needed. |
 | [os_arch_ctx_sw](os_arch_ctx_sw.md) | Change the state of task given task to *running*. |
 | [os_sched_ctx_sw_hook](os_sched_ctx_sw_hook.md) | Performs task accounting when context switching. |


[3/9] incubator-mynewt-site git commit: Updated the list of functions to include descriptions

Posted by ad...@apache.org.
Updated the list of functions to include descriptions


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

Branch: refs/heads/master
Commit: 9e6cd25636f928e5ce43fd8cb3a2467d39e72566
Parents: 9037454
Author: briangiori <br...@gmail.com>
Authored: Tue Jun 21 17:24:26 2016 -0700
Committer: = <=>
Committed: Wed Jun 22 10:00:20 2016 -0700

----------------------------------------------------------------------
 .../os/core_os/context_switch/context_switch.md | 23 ++++++++++----------
 1 file changed, 12 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/9e6cd256/docs/os/core_os/context_switch/context_switch.md
----------------------------------------------------------------------
diff --git a/docs/os/core_os/context_switch/context_switch.md b/docs/os/core_os/context_switch/context_switch.md
index 97716d6..95a77f0 100644
--- a/docs/os/core_os/context_switch/context_switch.md
+++ b/docs/os/core_os/context_switch/context_switch.md
@@ -27,14 +27,15 @@ Scheduler has a CPU architecture specific component; this code is responsible fo
 
 The functions available in context_switch are:
 
-* [os_sched](os_sched.md)
-* [os_arch_ctx_sw](os_arch_ctx_sw.md)
-* [os_sched_ctx_sw_hook](os_sched_ctx_sw_hook.md)
-* [os_sched_get_current_task](os_sched_get_current_task.md)
-* [os_sched_insert](os_sched_insert.md)
-* [os_sched_next_task](os_sched_next_task.md)
-* [os_sched_os_timer_exp](os_sched_os_timer_exp.md)
-* [os_sched_resort](os_sched_resort.md)
-* [os_sched_set_current_task](os_sched_set_current_task.md)
-* [os_sched_sleep](os_sched_sleep.md)
-* [os_sched_wakeup](os_sched_wakeup.md)
+| **Function** | **Description** |
+| [os_sched](os_sched.md) | Performs context switch if needed. |
+| [os_arch_ctx_sw](os_arch_ctx_sw.md) | Change the state of task given task to *running*. |
+| [os_sched_ctx_sw_hook](os_sched_ctx_sw_hook.md) | Performs task accounting when context switching. |
+| [os_sched_get_current_task](os_sched_get_current_task.md) | Returns the pointer to task which is currently *running*. |
+| [os_sched_insert](os_sched_insert.md) | Insert task into scheduler's ready to run list. |
+| [os_sched_next_task](os_sched_next_task.md) | Returns the pointer to highest priority task from the list which are *ready to run*. |
+| [os_sched_os_timer_exp](os_sched_os_timer_exp.md) | Inform scheduler that OS time has moved forward. |
+| [os_sched_resort](os_sched_resort.md) | Inform scheduler that the priority of the given task has changed and the *ready to run* list should be re-sorted. |
+| [os_sched_set_current_task](os_sched_set_current_task.md) | Sets the given task to *running*. |
+| [os_sched_sleep](os_sched_sleep.md) | The given task's state is changed from *ready to run* to *sleeping*. |
+| [os_sched_wakeup](os_sched_wakeup.md) | Called to make task *ready to run*. If task is *sleeping*, it is woken up. |


[7/9] incubator-mynewt-site git commit: retained develop version in mkdocs.yml

Posted by ad...@apache.org.
retained develop version in mkdocs.yml


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

Branch: refs/heads/master
Commit: 5872b5728251ffd44eda940164660b77ccbe940b
Parents: 2576c1f
Author: aditihilbert <ad...@runtime.io>
Authored: Wed Jun 22 11:11:31 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Jun 22 11:11:31 2016 -0700

----------------------------------------------------------------------
 mkdocs.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/5872b572/mkdocs.yml
----------------------------------------------------------------------
diff --git a/mkdocs.yml b/mkdocs.yml
index e04d0eb..984a6a8 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -374,7 +374,7 @@ markdown_extensions:
         pygments_style: xcode
 
 extra:
-    version: 'v0_9_0'
+    version: 'none'
     versions:
         -   label: 'develop'
             branch: 'develop'


[9/9] incubator-mynewt-site git commit: changed master version to v0.9.0 in mkdocs.yml

Posted by ad...@apache.org.
changed master version to v0.9.0 in mkdocs.yml


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

Branch: refs/heads/master
Commit: 3e5fb814ef1fe719282d139cabf9cd2d9c80e194
Parents: c45eba7
Author: aditihilbert <ad...@runtime.io>
Authored: Wed Jun 22 11:16:00 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Jun 22 11:16:00 2016 -0700

----------------------------------------------------------------------
 mkdocs.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/3e5fb814/mkdocs.yml
----------------------------------------------------------------------
diff --git a/mkdocs.yml b/mkdocs.yml
index 984a6a8..e04d0eb 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -374,7 +374,7 @@ markdown_extensions:
         pygments_style: xcode
 
 extra:
-    version: 'none'
+    version: 'v0_9_0'
     versions:
         -   label: 'develop'
             branch: 'develop'