mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add traceQUEUE_RESET and traceQUEUE_RESET_FAILED hooks.
xQueueGenericReset does not feature any tracing hooks besides the API ENTER and EXIT calls. This introduces two new tracing hooks that, in the same style as all other queue APIs, inform a tracer that a queue has been reset.
This commit is contained in:
parent
c431b358c8
commit
1fb36a0e60
|
@ -813,6 +813,14 @@
|
|||
#define traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue )
|
||||
#endif
|
||||
|
||||
#ifndef traceQUEUE_RESET
|
||||
#define traceQUEUE_RESET( pxQueue, xNewQueue )
|
||||
#endif
|
||||
|
||||
#ifndef traceQUEUE_RESET_FAILED
|
||||
#define traceQUEUE_RESET_FAILED( pxQueue, xNewQueue )
|
||||
#endif
|
||||
|
||||
#ifndef traceQUEUE_DELETE
|
||||
#define traceQUEUE_DELETE( pxQueue )
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue