mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
xQueueSendToFromFromISR --> xQueueSendToFrontFromISR (#795)
Co-authored-by: Robert Berger <Robert.Berger@ReliableEmbeddedSystems.com> Co-authored-by: chinglee-iot <61685396+chinglee-iot@users.noreply.github.com>
This commit is contained in:
parent
c59ce22c8f
commit
15e0364968
|
@ -995,7 +995,7 @@ void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
|
||||||
* @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set
|
* @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set
|
||||||
* *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
|
* *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
|
||||||
* to unblock, and the unblocked task has a priority higher than the currently
|
* to unblock, and the unblocked task has a priority higher than the currently
|
||||||
* running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then
|
* running task. If xQueueSendToFrontFromISR() sets this value to pdTRUE then
|
||||||
* a context switch should be requested before the interrupt is exited.
|
* a context switch should be requested before the interrupt is exited.
|
||||||
*
|
*
|
||||||
* @return pdTRUE if the data was successfully sent to the queue, otherwise
|
* @return pdTRUE if the data was successfully sent to the queue, otherwise
|
||||||
|
|
Loading…
Reference in a new issue