mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-28 21:08:18 +08:00
Deleted the commented out naked attribute.
This commit is contained in:
@ -54,11 +54,13 @@
|
||||
#include "FreeRTOS.h"
|
||||
#include "task.h"
|
||||
|
||||
static void vRegTest1( void *pvParameters );// __attribute__((naked));
|
||||
static void vRegTest2( void *pvParameters );// __attribute__((naked));
|
||||
static void vRegTest1( void *pvParameters );
|
||||
static void vRegTest2( void *pvParameters );
|
||||
|
||||
static volatile unsigned long ulRegTest1Counter = 0UL, ulRegTest2Counter = 0UL;
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vStartRegTestTasks( void )
|
||||
{
|
||||
xTaskCreate( vRegTest1, ( signed char * ) "RTest1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
|
||||
|
Reference in New Issue
Block a user