summaryrefslogtreecommitdiff
path: root/common/src/txe_queue_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/txe_queue_create.c')
-rw-r--r--common/src/txe_queue_create.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/src/txe_queue_create.c b/common/src/txe_queue_create.c
index 8a7d0beb..592d0a89 100644
--- a/common/src/txe_queue_create.c
+++ b/common/src/txe_queue_create.c
@@ -80,7 +80,7 @@
/* 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)
{
@@ -104,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)))
{
@@ -137,7 +137,7 @@ TX_THREAD *thread_ptr;
}
else
{
-
+
/* Move to the next queue. */
next_queue = next_queue -> tx_queue_created_next;
}
@@ -148,7 +148,7 @@ TX_THREAD *thread_ptr;
/* Decrement the preempt disable flag. */
_tx_thread_preempt_disable--;
-
+
/* Restore interrupts. */
TX_RESTORE
@@ -178,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)
{
@@ -214,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;
}