]> git.sur5r.net Git - freertos/commitdiff
Revert the CM0 port layer exception handler names to the traditional FreeRTOS names...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 25 Jan 2012 09:19:58 +0000 (09:19 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 25 Jan 2012 09:19:58 +0000 (09:19 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1678 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/portable/GCC/ARM_CM0/port.c

index e68ca16ceb8a7858d8b0c5d665a329cc6f5c2c08..85232dfe5ce3a811200951b7fa17f33285551fe3 100644 (file)
@@ -87,9 +87,9 @@ static void prvSetupTimerInterrupt( void );
 /*\r
  * Exception handlers.\r
  */\r
-void PendSV_Handler( void ) __attribute__ (( naked ));\r
-void SysTick_Handler( void );\r
-void SVCall_Handler( void ) __attribute__ (( naked ));\r
+void xPortPendSVHandler( void ) __attribute__ (( naked ));\r
+void xPortSysTickHandler( void );\r
+void vPortSVCHandler( void ) __attribute__ (( naked ));\r
 \r
 /*\r
  * Start first task is a separate function so it can be tested in isolation.\r
@@ -117,7 +117,7 @@ portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-void SVCall_Handler( void )\r
+void vPortSVCHandler( void )\r
 {\r
        __asm volatile (\r
                                        "       ldr     r3, pxCurrentTCBConst2          \n" /* Restore the context. */\r
@@ -213,7 +213,7 @@ void vPortExitCritical( void )
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-void PendSV_Handler( void )\r
+void xPortPendSVHandler( void )\r
 {\r
        /* This is a naked function. */\r
 \r
@@ -261,7 +261,7 @@ void PendSV_Handler( void )
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-void SysTick_Handler( void )\r
+void xPortSysTickHandler( void )\r
 {\r
 unsigned long ulDummy;\r
 \r