mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-11 22:25:14 -05:00
Made sharedSeg_TCB_p precise to allow merging of fractions without opening and closing
This commit is contained in:
parent
b44eb855d9
commit
3be9d76d82
1 changed files with 2 additions and 3 deletions
|
|
@ -108,9 +108,8 @@ predicate prvSeg_TCB_p(TCB_t* tcb, uint32_t ulFreeBytesOnStack) =
|
|||
stack_p_2(stackPtr, ?ulStackDepth, topPtr,
|
||||
ulFreeBytesOnStack, ?ulUsedCells, ?ulUnalignedBytes);
|
||||
|
||||
predicate sharedSeg_TCB_p(TCB_t* tcb) =
|
||||
tcb->xTaskRunState |-> ?gTaskRunState &*&
|
||||
true;
|
||||
predicate sharedSeg_TCB_p(TCB_t* tcb;) =
|
||||
tcb->xTaskRunState |-> ?gTaskRunState;
|
||||
|
||||
predicate coreLocalSeg_TCB_p(TCB_t* tcb, UBaseType_t uxCriticalNesting) =
|
||||
tcb->uxCriticalNesting |-> uxCriticalNesting;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue