Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcykro82 <48791109+cykro82@users.noreply.github.com>2020-06-02 20:50:02 +0300
committerGitHub <noreply@github.com>2020-06-02 20:50:02 +0300
commit6199b72fbf57a7c5b3d7b195a3bd1446779314cd (patch)
treeadfda553768fc6d9f1c58a435bd31d3caa5b7f38 /queue.c
parent4b353bfd7aa009d553f31b4e47dfb49a9f3c75b1 (diff)
Renamed trace point in prvNotifyQueueSetContainer() so it isn't a d… (#47)
* * Renamed trace point in prvNotifyQueueSetContainer() so it isn't a duplicate of the trace point in xQueueGenericSend() * * Fixed backwards compatibility. Co-authored-by: Erik Tamlin <erik.tamlin@percepio.com>
Diffstat (limited to 'queue.c')
-rw-r--r--queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/queue.c b/queue.c
index 8b46da06a..b30d21215 100644
--- a/queue.c
+++ b/queue.c
@@ -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 );