summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source/queue.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Source/queue.c')
-rw-r--r--FreeRTOS/Source/queue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/FreeRTOS/Source/queue.c b/FreeRTOS/Source/queue.c
index 474fd3462..b30d21215 100644
--- a/FreeRTOS/Source/queue.c
+++ b/FreeRTOS/Source/queue.c
@@ -1,5 +1,5 @@
/*
- * FreeRTOS Kernel V10.3.0
+ * FreeRTOS Kernel V10.3.1
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
@@ -1082,7 +1082,7 @@ Queue_t * const pxQueue = xQueue;
{
mtCOVERAGE_TEST_MARKER();
}
-
+
/* Not used in this path. */
( void ) uxPreviousMessagesWaiting;
}
@@ -1284,7 +1284,7 @@ Queue_t * const pxQueue = xQueue;
configASSERT( ( pxQueue ) );
/* The buffer into which data is received can only be NULL if the data size
- is zero (so no data is copied into the buffer. */
+ is zero (so no data is copied into the buffer). */
configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) );
/* Cannot block if the scheduler is suspended. */
@@ -2893,7 +2893,7 @@ Queue_t * const pxQueue = xQueue;
{
const int8_t cTxLock = pxQueueSetContainer->cTxLock;
- traceQUEUE_SEND( pxQueueSetContainer );
+ traceQUEUE_SET_SEND( pxQueueSetContainer );
/* The data copied is the handle of the queue that contains data. */
xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, queueSEND_TO_BACK );