mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-12 09:07:46 -04:00
Minor updates relating to formatting and comments only.
This commit is contained in:
parent
a61db8f155
commit
2bf93bf925
11 changed files with 23 additions and 16 deletions
|
@ -555,7 +555,7 @@ TCB_t * pxNewTCB;
|
|||
StackType_t *pxTopOfStack;
|
||||
|
||||
configASSERT( pxTaskCode );
|
||||
configASSERT( ( ( uxPriority & ( ~portPRIVILEGE_BIT ) ) < configMAX_PRIORITIES ) );
|
||||
configASSERT( ( ( uxPriority & ( UBaseType_t ) ( ~portPRIVILEGE_BIT ) ) < ( UBaseType_t ) configMAX_PRIORITIES ) );
|
||||
|
||||
/* Allocate the memory required by the TCB and stack for the new task,
|
||||
checking that the allocation was successful. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue