* Renamed trace point in prvNotifyQueueSetContainer() so it isn't a duplicate of the trace point in xQueueGenericSend()

This commit is contained in:
Erik Tamlin 2020-04-07 11:27:52 +02:00
parent 334de5d8ab
commit ddd02abf47
2 changed files with 5 additions and 1 deletions

View file

@ -460,6 +460,10 @@ hold explicit before calling the code. */
#define traceQUEUE_SEND( pxQueue )
#endif
#ifndef traceQUEUE_SET_SEND
#define traceQUEUE_SET_SEND( pxQueue )
#endif
#ifndef traceQUEUE_SEND_FAILED
#define traceQUEUE_SEND_FAILED( pxQueue )
#endif

View file

@ -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 );