summaryrefslogtreecommitdiff
path: root/nuttx/include/nuttx/wqueue.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-14 10:21:18 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-14 10:21:18 -0600
commit7501579ff7683ee50d4fed4727e081c2e2535342 (patch)
treefbbe14a7474ae7549deab0ee139d3cb3fb2a65ee /nuttx/include/nuttx/wqueue.h
parent0722a39b7423738eb2f49218c51036eb93b70016 (diff)
downloadnuttx-7501579ff7683ee50d4fed4727e081c2e2535342.tar.gz
nuttx-7501579ff7683ee50d4fed4727e081c2e2535342.tar.bz2
nuttx-7501579ff7683ee50d4fed4727e081c2e2535342.zip
Add description of work queues to the porting guide. Update comments
Diffstat (limited to 'nuttx/include/nuttx/wqueue.h')
-rw-r--r--nuttx/include/nuttx/wqueue.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/nuttx/include/nuttx/wqueue.h b/nuttx/include/nuttx/wqueue.h
index b7c7d96c3..446e4c89c 100644
--- a/nuttx/include/nuttx/wqueue.h
+++ b/nuttx/include/nuttx/wqueue.h
@@ -63,10 +63,6 @@
* (which runs at the lowest of priority and may not be appropriate
* if memory reclamation is of high priority). If CONFIG_SCHED_HPWORK
* is enabled, then the following options can also be used:
- * CONFIG_SCHED_HPWORK - Build the high priority work queue. To preserve
- * legacy behavior, CONFIG_SCHED_HPWORK is assumed to be true in a flat
- * build (CONFIG_SCHED_KERNEL=n) but must be defined in kernel mode
- * in order to build the high priority work queue.
* CONFIG_SCHED_HPWORKPRIORITY - The execution priority of the high-
* priority worker thread. Default: 224
* CONFIG_SCHED_HPWORKPERIOD - How often the worker thread checks for
@@ -338,7 +334,7 @@ int work_usrstart(void);
*
* Description:
* Queue work to be performed at a later time. All queued work will be
- * performed on the worker thread of of execution (not the caller's).
+ * performed on the worker thread of execution (not the caller's).
*
* The work structure is allocated by caller, but completely managed by
* the work queue logic. The caller should never modify the contents of
@@ -412,6 +408,7 @@ int work_signal(int qid);
* Check if the work structure is available.
*
* Input parameters:
+ * work - The work queue structure to check.
* None
*
* Returned Value: