summaryrefslogtreecommitdiff
path: root/FreeRTOS/Test/CBMC/proofs/Task/TaskGetTaskNumber/tasks_test_access_functions.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Test/CBMC/proofs/Task/TaskGetTaskNumber/tasks_test_access_functions.h')
-rw-r--r--FreeRTOS/Test/CBMC/proofs/Task/TaskGetTaskNumber/tasks_test_access_functions.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/FreeRTOS/Test/CBMC/proofs/Task/TaskGetTaskNumber/tasks_test_access_functions.h b/FreeRTOS/Test/CBMC/proofs/Task/TaskGetTaskNumber/tasks_test_access_functions.h
index cfd998f3a..e7e53fc77 100644
--- a/FreeRTOS/Test/CBMC/proofs/Task/TaskGetTaskNumber/tasks_test_access_functions.h
+++ b/FreeRTOS/Test/CBMC/proofs/Task/TaskGetTaskNumber/tasks_test_access_functions.h
@@ -33,12 +33,14 @@
*/
TaskHandle_t xUnconstrainedTCB( void )
{
- TCB_t * pxTCB = pvPortMalloc(sizeof(TCB_t));
+ TCB_t * pxTCB = pvPortMalloc( sizeof( TCB_t ) );
- if ( pxTCB == NULL )
- return NULL;
+ if( pxTCB == NULL )
+ {
+ return NULL;
+ }
- return pxTCB;
+ return pxTCB;
}
/*
@@ -47,7 +49,7 @@ TaskHandle_t xUnconstrainedTCB( void )
*/
void vPrepareTask( TaskHandle_t * xTask )
{
- __CPROVER_assert_zero_allocation();
+ __CPROVER_assert_zero_allocation();
- *xTask = xUnconstrainedTCB();
+ *xTask = xUnconstrainedTCB();
}