Update the common demo death.c to use the updated macro name to give it a secure context.

This commit is contained in:
Richard Barry 2019-02-19 02:57:44 +00:00
parent ce576f3683
commit c3c9c12ce2
2 changed files with 2 additions and 1 deletions

View file

@ -98,7 +98,7 @@ TaskHandle_t xTaskToKill;
const TickType_t xDelay = pdMS_TO_TICKS( ( TickType_t ) 200 ); const TickType_t xDelay = pdMS_TO_TICKS( ( TickType_t ) 200 );
/* Test deletion of a task's secure context, if any. */ /* Test deletion of a task's secure context, if any. */
portTASK_CALLS_SECURE_FUNCTIONS(); portALLOCATE_SECURE_CONTEXT( configMINIMAL_SECURE_STACK_SIZE );
if( pvParameters != NULL ) if( pvParameters != NULL )
{ {

View file

@ -306,3 +306,4 @@ BaseType_t xReturn;
#endif #endif
#endif /* PORTMACRO_H */ #endif /* PORTMACRO_H */