mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Minor updates to comments only.
This commit is contained in:
parent
585b16a39f
commit
5bebf10fa4
|
@ -244,7 +244,7 @@ BaseType_t xPortInstallInterruptHandler( ISR_Handler_t pxHandler, uint32_t ulVec
|
||||||
|
|
||||||
This method can always be used. It is slightly more complex than
|
This method can always be used. It is slightly more complex than
|
||||||
method 1 but benefits from a faster interrupt entry time. */
|
method 1 but benefits from a faster interrupt entry time. */
|
||||||
#warning config_USE_COMMON_INTERRUPT_ENTRY_POINT was not defined in FreeRTOSConfig.h and has been defaulted to 1.
|
#warning configUSE_COMMON_INTERRUPT_ENTRY_POINT was not defined in FreeRTOSConfig.h and has been defaulted to 1.
|
||||||
#define configUSE_COMMON_INTERRUPT_ENTRY_POINT 1
|
#define configUSE_COMMON_INTERRUPT_ENTRY_POINT 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -256,7 +256,7 @@ BaseType_t xPortInstallInterruptHandler( ISR_Handler_t pxHandler, uint32_t ulVec
|
||||||
on the system stack, and must be large enough to hold a potentially nested
|
on the system stack, and must be large enough to hold a potentially nested
|
||||||
interrupt stack frame. */
|
interrupt stack frame. */
|
||||||
|
|
||||||
#error configISE_STACK_SIZE was not defined in FreeRTOSConfig.h.
|
#error configISR_STACK_SIZE was not defined in FreeRTOSConfig.h.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef configMAX_API_CALL_INTERRUPT_PRIORITY
|
#ifndef configMAX_API_CALL_INTERRUPT_PRIORITY
|
||||||
|
|
|
@ -1370,7 +1370,7 @@ static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB )
|
||||||
{
|
{
|
||||||
#if( configUSE_TASK_NOTIFICATIONS == 1 )
|
#if( configUSE_TASK_NOTIFICATIONS == 1 )
|
||||||
{
|
{
|
||||||
/* The task does not appear on the vent list item of
|
/* The task does not appear on the event list item of
|
||||||
and of the RTOS objects, but could still be in the
|
and of the RTOS objects, but could still be in the
|
||||||
blocked state if it is waiting on its notification
|
blocked state if it is waiting on its notification
|
||||||
rather than waiting on an object. */
|
rather than waiting on an object. */
|
||||||
|
|
Loading…
Reference in a new issue