From: richardbarry Date: Sun, 28 Mar 2010 17:48:00 +0000 (+0000) Subject: Deleted the commented out naked attribute. X-Git-Tag: V6.0.5~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7f6470328c578f8dd800909ea62b54d9f91e82b2;p=freertos Deleted the commented out naked attribute. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1008 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/CORTUS_APS3_GCC/Demo/RegTest.c b/Demo/CORTUS_APS3_GCC/Demo/RegTest.c index 243c7b6ba..21a4040ce 100644 --- a/Demo/CORTUS_APS3_GCC/Demo/RegTest.c +++ b/Demo/CORTUS_APS3_GCC/Demo/RegTest.c @@ -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 );