summaryrefslogtreecommitdiff
path: root/lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h
diff options
context:
space:
mode:
authorxmarvla <vlatko.markovic@seavus.com>2011-06-16 14:45:38 +0100
committerViktor Mladenovski <viktor.mladenovski@seavus.com>2011-08-17 22:10:43 +0200
commitb9b4df06ddb81a6d14354fc0d42e22acf0b4c30c (patch)
tree48b17930f3f28c72094f090ba38e6761aa43416b /lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h
parentc9d1f9613e3ac18d5dd3b9432646e289bb88cec9 (diff)
LCM R1T and LCDriver R1N official release.
ST-Ericsson ID: 345044 ST-Ericsson FOSS-OUT ID: STETL-FOSS-OUT-10204 Change-Id: Ib1901abfc2efa6c887c70b8583ddd2258e21aa78 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/25187 Tested-by: Vlatko STENKOSKI Tested-by: Cvetko MLADENOVSKI <cvetko.mladenovski@seavus.com> Tested-by: Aleksandar GASOSKI <aleksandar.gasoski@seavus.com> Reviewed-by: Zoran ANCEVSKI <zoran.ancevski@seavus.com> Reviewed-by: QATEST Reviewed-by: Vlatko PISTOLOV <vlatko.pistolov@seavus.com> Conflicts: lcmodule/win_binaries/LCM.dll win_binaries/LCDriver_CNH1606432.dll
Diffstat (limited to 'lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h')
-rw-r--r--lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h b/lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h
index 06e9d17..abf0904 100644
--- a/lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h
+++ b/lcmodule/source/cnh1605551_ldr_utilities/include/r_queue.h
@@ -61,12 +61,12 @@ void Do_Fifo_Destroy(void *Object_p, void **const Queue_pp);
* reentrant across different queues, but enqueueing on the same queue is
* not necessarily reentrant.
*
- * @param [in] Object_p - Pointer to LCM instance context.
- * @param [in] Queue_p - The queue to append to.
- * @param [in] Value_p - The value to enqueue.
+ * @param [in] Object_p Pointer to LCM instance context.
+ * @param [in] Queue_p The queue to append to.
+ * @param [in] Value_p The value to enqueue.
* @return E_SUCCESS - The function completed successfully.
*
- * @return E_FAILED_TO_STORE_IN_FIFO - Faliled to store data in fifo.
+ * @return E_FAILED_TO_STORE_IN_FIFO - Failed to store data in fifo.
*/
ErrorCode_e Do_Fifo_Enqueue(void *Object_p,
void *const Queue_p,
@@ -174,8 +174,8 @@ void Do_RFifo_Create(void *Object_p,
/**
* @brief Releases any resources associated with the specified queue structure.
*
- * @param [in] Object_p - Pointer to LCM instance context.
- * @param [in,out] Queue_pp - Pointer to the queue structure to destroy.
+ * @param [in] Object_p Pointer to LCM instance context.
+ * @param [in,out] Queue_pp Pointer to the queue structure to destroy.
*/
void Do_RFifo_Destroy(void *Object_p, void **const Queue_pp);
@@ -184,10 +184,10 @@ void Do_RFifo_Destroy(void *Object_p, void **const Queue_pp);
*
* Enqueueing function of a re-entrant, interrupt-safe FIFO queue.
*
- * @param [in] Object_p - Pointer to LCM instance context.
- * @param [in] Queue_p - The queue to append to.
- * @param [in] Value_p - The value to enqueue.
- * @return E_SUCCESS - The function completed successfully.
+ * @param [in] Object_p Pointer to LCM instance context.
+ * @param [in] Queue_p The queue to append to.
+ * @param [in] Value_p The value to enqueue.
+ * @return E_SUCCESS The function completed successfully.
*
* @return E_FAILED_TO_STORE_IN_FIFO - Faliled to store data in fifo.
*/
@@ -226,7 +226,7 @@ void *Do_RFifo_Dequeue(void *Object_p, void *const Queue_p);
* function should be called each time the queue has
* transitioned from an empty to a non-empty state.
* @param [in] Callback The function to call when the specified event occurs
- * or NULL to unregister a previously registered func.
+ * or NULL to unregister a previously registered functions.
* @param [in] Param_p Parameter to pass to the callback function.
* @return The previously registered callback function for this
* type.