mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-02-24 02:55:32 -05:00
Correct minor mistakes in code comments (#1371)
This commit revises some comments in the following files:
- event_groups.c
- include/queue.h
- include/task.h
Co-authored-by: Kody Stribrny <89810515+kstribrnAmzn@users.noreply.github.com>
This commit is contained in:
parent
850d29477c
commit
0f8efd98cc
3 changed files with 12 additions and 10 deletions
|
|
@ -2617,9 +2617,8 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION;
|
|||
* notification value at that index being updated. ulValue is not used and
|
||||
* xTaskNotifyIndexed() always returns pdPASS in this case.
|
||||
*
|
||||
* pulPreviousNotificationValue -
|
||||
* Can be used to pass out the subject task's notification value before any
|
||||
* bits are modified by the notify function.
|
||||
* @param pulPreviousNotificationValue Can be used to pass out the subject
|
||||
* task's notification value before any bits are modified by the notify function.
|
||||
*
|
||||
* @return Dependent on the value of eAction. See the description of the
|
||||
* eAction parameter.
|
||||
|
|
@ -2764,6 +2763,9 @@ BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify,
|
|||
* updated. ulValue is not used and xTaskNotify() always returns pdPASS in
|
||||
* this case.
|
||||
*
|
||||
* @param pulPreviousNotificationValue Can be used to pass out the subject
|
||||
* task's notification value before any bits are modified by the notify function.
|
||||
*
|
||||
* @param pxHigherPriorityTaskWoken xTaskNotifyFromISR() will set
|
||||
* *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the
|
||||
* task to which the notification was sent to leave the Blocked state, and the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue