]> git.sur5r.net Git - freertos/commitdiff
Deleted the commented out naked attribute.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sun, 28 Mar 2010 17:48:00 +0000 (17:48 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sun, 28 Mar 2010 17:48:00 +0000 (17:48 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1008 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/CORTUS_APS3_GCC/Demo/RegTest.c

index 243c7b6ba521996eddc38458d60899e55a111c86..21a4040ce35419e3d6cc02c460bbf831a77d50fd 100644 (file)
 #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 );