mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-23 23:11:58 -04:00
Change taskYIELD_FROM_ISR to portYIELD_FROM_ISR in docs (#408)
This commit is contained in:
parent
a40d52dc05
commit
5a2a1d0702
|
@ -405,10 +405,10 @@ size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
|
||||||
* // priority of the currently executing task was unblocked and a context
|
* // priority of the currently executing task was unblocked and a context
|
||||||
* // switch should be performed to ensure the ISR returns to the unblocked
|
* // switch should be performed to ensure the ISR returns to the unblocked
|
||||||
* // task. In most FreeRTOS ports this is done by simply passing
|
* // task. In most FreeRTOS ports this is done by simply passing
|
||||||
* // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
|
* // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the
|
||||||
* // variables value, and perform the context switch if necessary. Check the
|
* // variables value, and perform the context switch if necessary. Check the
|
||||||
* // documentation for the port in use for port specific instructions.
|
* // documentation for the port in use for port specific instructions.
|
||||||
* taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
|
* portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
|
||||||
* }
|
* }
|
||||||
* @endcode
|
* @endcode
|
||||||
* \defgroup xStreamBufferSendFromISR xStreamBufferSendFromISR
|
* \defgroup xStreamBufferSendFromISR xStreamBufferSendFromISR
|
||||||
|
@ -580,10 +580,10 @@ size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
|
||||||
* // priority of the currently executing task was unblocked and a context
|
* // priority of the currently executing task was unblocked and a context
|
||||||
* // switch should be performed to ensure the ISR returns to the unblocked
|
* // switch should be performed to ensure the ISR returns to the unblocked
|
||||||
* // task. In most FreeRTOS ports this is done by simply passing
|
* // task. In most FreeRTOS ports this is done by simply passing
|
||||||
* // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
|
* // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the
|
||||||
* // variables value, and perform the context switch if necessary. Check the
|
* // variables value, and perform the context switch if necessary. Check the
|
||||||
* // documentation for the port in use for port specific instructions.
|
* // documentation for the port in use for port specific instructions.
|
||||||
* taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
|
* portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
|
||||||
* }
|
* }
|
||||||
* @endcode
|
* @endcode
|
||||||
* \defgroup xStreamBufferReceiveFromISR xStreamBufferReceiveFromISR
|
* \defgroup xStreamBufferReceiveFromISR xStreamBufferReceiveFromISR
|
||||||
|
|
Loading…
Reference in a new issue