Deleted the commented out naked attribute.

This commit is contained in:
Richard Barry 2010-03-28 17:48:00 +00:00
parent 0821d5201e
commit 1ae4ae2348

View File

@ -54,11 +54,13 @@
#include "FreeRTOS.h" #include "FreeRTOS.h"
#include "task.h" #include "task.h"
static void vRegTest1( void *pvParameters );// __attribute__((naked)); static void vRegTest1( void *pvParameters );
static void vRegTest2( void *pvParameters );// __attribute__((naked)); static void vRegTest2( void *pvParameters );
static volatile unsigned long ulRegTest1Counter = 0UL, ulRegTest2Counter = 0UL; static volatile unsigned long ulRegTest1Counter = 0UL, ulRegTest2Counter = 0UL;
/*-----------------------------------------------------------*/
void vStartRegTestTasks( void ) void vStartRegTestTasks( void )
{ {
xTaskCreate( vRegTest1, ( signed char * ) "RTest1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL ); xTaskCreate( vRegTest1, ( signed char * ) "RTest1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );