mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-11 14:15:12 -05:00
Initialized memory safety proof for xTaskCreate.
This commit is contained in:
parent
746c02f34a
commit
f1a0170309
4 changed files with 209 additions and 147 deletions
12
tasks.c
12
tasks.c
|
|
@ -27,6 +27,7 @@
|
|||
/* Verifast proof setup */
|
||||
#ifdef VERIFAST
|
||||
#include "verifast_proof_defs.h"
|
||||
#include "tasks.gh"
|
||||
#endif
|
||||
|
||||
/* Standard includes. */
|
||||
|
|
@ -1297,6 +1298,9 @@ static void prvYieldForTask( TCB_t * pxTCB,
|
|||
void * const pvParameters,
|
||||
UBaseType_t uxPriority,
|
||||
TaskHandle_t * const pxCreatedTask )
|
||||
/*@ requires usStackDepth * sizeof( StackType_t ) < UINTPTR_MAX;
|
||||
@*/
|
||||
//@ ensures true;
|
||||
#if ( ( configNUM_CORES > 1 ) && ( configUSE_CORE_AFFINITY == 1 ) )
|
||||
{
|
||||
return xTaskCreateAffinitySet(pxTaskCode, pcName, usStackDepth, pvParameters, uxPriority, tskNO_AFFINITY, pxCreatedTask);
|
||||
|
|
@ -1411,6 +1415,10 @@ static void prvInitialiseNewTask( TaskFunction_t pxTaskCode,
|
|||
TaskHandle_t * const pxCreatedTask,
|
||||
TCB_t * pxNewTCB,
|
||||
const MemoryRegion_t * const xRegions )
|
||||
/*@ requires true;
|
||||
@*/
|
||||
/*@ ensures true;
|
||||
@*/
|
||||
{
|
||||
StackType_t * pxTopOfStack;
|
||||
UBaseType_t x;
|
||||
|
|
@ -1688,6 +1696,10 @@ static void prvInitialiseNewTask( TaskFunction_t pxTaskCode,
|
|||
/*-----------------------------------------------------------*/
|
||||
|
||||
static void prvAddNewTaskToReadyList( TCB_t * pxNewTCB )
|
||||
/*@ requires true;
|
||||
@*/
|
||||
/*@ ensures true;
|
||||
@*/
|
||||
{
|
||||
/* Ensure interrupts don't access the task lists while the lists are being
|
||||
* updated. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue