aboutsummaryrefslogtreecommitdiff
path: root/nuttx/Documentation
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-04 00:54:09 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-04 00:54:09 +0000
commitd593a95d5adc05bbe11cc0b6d84132be2bbc70e5 (patch)
tree7bfc2aaf9a03320f24991b54a67a1db24e05f100 /nuttx/Documentation
parent612735d392e7eab30237e67e5b0c55d2ea24cdcc (diff)
downloadpx4-firmware-d593a95d5adc05bbe11cc0b6d84132be2bbc70e5.tar.gz
px4-firmware-d593a95d5adc05bbe11cc0b6d84132be2bbc70e5.tar.bz2
px4-firmware-d593a95d5adc05bbe11cc0b6d84132be2bbc70e5.zip
Add support for multiple work queues
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5081 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/Documentation')
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index 9df1f9378..a03d9810f 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -4069,6 +4069,20 @@ build
the worker thread. Default: 4
</li>
<li>
+ <code>CONFIG_SCHED_LPWORK</code>: If CONFIG_SCHED_WORKQUEUE</code> is defined, then a single work queue is created by default.
+ If <code>CONFIG_SCHED_LPWORK</code> is also defined then an additional, lower-priority work queue will also be created.
+ This lower priority work queue is better suited for more extended processing (such as file system clean-up operations)
+ </li>
+ <li>
+ <code>CONFIG_SCHED_LPWORKPRIORITY</code>: The execution priority of the lower priority worker thread. Default: 50
+ </li>
+ <li>
+ <code>CONFIG_SCHED_LPWORKPERIOD</code>: How often the lower priority worker thread checks for work in units of microseconds. Default: 50*1000 (50 MS).
+ </li>
+ <li>
+ <code>CONFIG_SCHED_LPWORKSTACKSIZE - The stack size allocated for the lower priority worker thread. Default: CONFIG_IDLETHREAD_STACKSIZE.
+ </li>
+ <li>
<code>CONFIG_SCHED_WAITPID</code>: Enables the <a href="NuttxUserGuide.html#waitpid"><code>waitpid()</code><a> API
</li>
<li>