summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-06 13:42:49 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-06 13:42:49 +0000
commit13712e46ce30b5ad84a30994d03fedfbab2a3820 (patch)
tree6dcb70dd4e2f0252df93897ac2bbe9f5d7aa9296 /nuttx/include
parent3cd0ce8e626ad57b2695899278c62c057bab05ef (diff)
downloadpx4-nuttx-13712e46ce30b5ad84a30994d03fedfbab2a3820.tar.gz
px4-nuttx-13712e46ce30b5ad84a30994d03fedfbab2a3820.tar.bz2
px4-nuttx-13712e46ce30b5ad84a30994d03fedfbab2a3820.zip
Fix a potential race condition
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2234 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include')
-rwxr-xr-xnuttx/include/nuttx/wqueue.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/nuttx/include/nuttx/wqueue.h b/nuttx/include/nuttx/wqueue.h
index f1ebc3ec0..c44af7ed5 100755
--- a/nuttx/include/nuttx/wqueue.h
+++ b/nuttx/include/nuttx/wqueue.h
@@ -101,6 +101,13 @@ EXTERN pid_t g_worker;
* 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).
*
+ * The work structure is allocated by caller, but completely managed by
+ * the work queue logic. The caller should never modify the contents of
+ * the work queue structure; the caller should not call work_queue()
+ * again until either (1) the previous work has been performed and removed
+ * from the queue, or (2) work_cancel() has been called to cancel the work
+ * and remove it from the work queue.
+ *
* Input parameters:
* work - The work structure to queue
* worker - The worker callback to be invoked. The callback will invoked
@@ -121,7 +128,9 @@ EXTERN int work_queue(struct work_s *work, worker_t worker, FAR void *arg, uint3
* Name: work_cancel
*
* Description:
- * Cancel previously queued work.
+ * Cancel previously queued work. This removes work from the work queue.
+ * After work has been canceled, it may be re-queue by calling work_queue()
+ * again.
*
* Input parameters:
* work - The previously queue work structure to cancel
@@ -137,7 +146,9 @@ EXTERN int work_cancel(struct work_s *work);
* Name: work_signal
*
* Description:
- * Signal the worker thread to process the work queue now.
+ * Signal the worker thread to process the work queue now. This function
+ * is used internally by the work logic but could also be used by the
+ * user to force an immediate re-assessment of pending work.
*
* Input parameters:
* None