summaryrefslogtreecommitdiff
path: root/common_smp/src/txe_queue_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'common_smp/src/txe_queue_create.c')
-rw-r--r--common_smp/src/txe_queue_create.c92
1 files changed, 47 insertions, 45 deletions
diff --git a/common_smp/src/txe_queue_create.c b/common_smp/src/txe_queue_create.c
index b3b2021f..592d0a89 100644
--- a/common_smp/src/txe_queue_create.c
+++ b/common_smp/src/txe_queue_create.c
@@ -12,8 +12,8 @@
/**************************************************************************/
/**************************************************************************/
-/** */
-/** ThreadX Component */
+/** */
+/** ThreadX Component */
/** */
/** Queue */
/** */
@@ -32,59 +32,61 @@
#include "tx_queue.h"
-/**************************************************************************/
-/* */
-/* FUNCTION RELEASE */
-/* */
-/* _txe_queue_create PORTABLE C */
+/**************************************************************************/
+/* */
+/* FUNCTION RELEASE */
+/* */
+/* _txe_queue_create PORTABLE C */
/* 6.1 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
/* */
/* DESCRIPTION */
-/* */
-/* This function checks for errors in the queue create function call. */
-/* */
-/* INPUT */
-/* */
-/* queue_ptr Pointer to queue control block */
-/* name_ptr Pointer to queue name */
-/* message_size Size of each queue message */
-/* queue_start Starting address of the queue area*/
-/* queue_size Number of bytes in the queue */
+/* */
+/* This function checks for errors in the queue create function call. */
+/* */
+/* INPUT */
+/* */
+/* queue_ptr Pointer to queue control block */
+/* name_ptr Pointer to queue name */
+/* message_size Size of each queue message */
+/* queue_start Starting address of the queue area*/
+/* queue_size Number of bytes in the queue */
/* queue_control_block_size Size of queue control block */
-/* */
-/* OUTPUT */
-/* */
-/* TX_QUEUE_ERROR Invalid queue pointer */
-/* TX_PTR_ERROR Invalid starting address of queue */
-/* TX_SIZE_ERROR Invalid message queue size */
-/* status Actual completion status */
-/* */
-/* CALLS */
-/* */
-/* _tx_queue_create Actual queue create function */
-/* _tx_thread_system_preempt_check Check for preemption */
-/* */
-/* CALLED BY */
-/* */
-/* Application Code */
-/* */
-/* RELEASE HISTORY */
-/* */
+/* */
+/* OUTPUT */
+/* */
+/* TX_QUEUE_ERROR Invalid queue pointer */
+/* TX_PTR_ERROR Invalid starting address of queue */
+/* TX_SIZE_ERROR Invalid message queue size */
+/* status Actual completion status */
+/* */
+/* CALLS */
+/* */
+/* _tx_queue_create Actual queue create function */
+/* _tx_thread_system_preempt_check Check for preemption */
+/* */
+/* CALLED BY */
+/* */
+/* Application Code */
+/* */
+/* RELEASE HISTORY */
+/* */
/* DATE NAME DESCRIPTION */
/* */
-/* 09-30-2020 William E. Lamie Initial Version 6.1 */
+/* 05-19-2020 William E. Lamie Initial Version 6.0 */
+/* 09-30-2020 Yuxin Zhou Modified comment(s), */
+/* resulting in version 6.1 */
/* */
/**************************************************************************/
-UINT _txe_queue_create(TX_QUEUE *queue_ptr, CHAR *name_ptr, UINT message_size,
+UINT _txe_queue_create(TX_QUEUE *queue_ptr, CHAR *name_ptr, UINT message_size,
VOID *queue_start, ULONG queue_size, UINT queue_control_block_size)
{
TX_INTERRUPT_SAVE_AREA
-UINT status;
+UINT status;
ULONG i;
TX_QUEUE *next_queue;
#ifndef TX_TIMER_PROCESS_IN_ISR
@@ -102,7 +104,7 @@ TX_THREAD *thread_ptr;
/* Queue pointer is invalid, return appropriate error code. */
status = TX_QUEUE_ERROR;
}
-
+
/* Now check for a valid control block size. */
else if (queue_control_block_size != (sizeof(TX_QUEUE)))
{
@@ -135,7 +137,7 @@ TX_THREAD *thread_ptr;
}
else
{
-
+
/* Move to the next queue. */
next_queue = next_queue -> tx_queue_created_next;
}
@@ -146,7 +148,7 @@ TX_THREAD *thread_ptr;
/* Decrement the preempt disable flag. */
_tx_thread_preempt_disable--;
-
+
/* Restore interrupts. */
TX_RESTORE
@@ -176,7 +178,7 @@ TX_THREAD *thread_ptr;
/* Invalid message size specified. */
status = TX_SIZE_ERROR;
}
-
+
/* Check for an invalid message size - greater than 16. */
else if (message_size > TX_16_ULONG)
{
@@ -212,11 +214,11 @@ TX_THREAD *thread_ptr;
/* Check for interrupt call. */
if (TX_THREAD_GET_SYSTEM_STATE() != ((ULONG) 0))
{
-
+
/* Now, make sure the call is from an interrupt and not initialization. */
if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS)
{
-
+
/* Invalid caller of this function, return appropriate error code. */
status = TX_CALLER_ERROR;
}