]> git.sur5r.net Git - freertos/commitdiff
Remove inline keywords.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 1 May 2008 17:16:26 +0000 (17:16 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 1 May 2008 17:16:26 +0000 (17:16 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@333 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/croutine.c

index 73c08350b35452da9347e221048856b4fc99d488..059a87d8d84c8576383bfd23b82ea4dbeca1aa8e 100644 (file)
@@ -95,7 +95,7 @@ static void prvInitialiseCoRoutineLists( void );
  * in the pending ready list in order that they can later be moved to the ready\r
  * list by the co-routine scheduler.\r
  */\r
-static inline void prvCheckPendingReadyList( void );\r
+static void prvCheckPendingReadyList( void );\r
 \r
 /*\r
  * Macro that looks at the list of co-routines that are currently delayed to\r
@@ -105,7 +105,7 @@ static inline void prvCheckPendingReadyList( void );
  * meaning once one co-routine has been found whose timer has not expired\r
  * we need not look any further down the list.\r
  */\r
-static inline void prvCheckDelayedList( void );\r
+static void prvCheckDelayedList( void );\r
 \r
 /*-----------------------------------------------------------*/\r
 \r
@@ -204,7 +204,7 @@ portTickType xTimeToWake;
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static inline void prvCheckPendingReadyList( void )\r
+static void prvCheckPendingReadyList( void )\r
 {\r
        /* Are there any co-routines waiting to get moved to the ready list?  These\r
        are co-routines that have been readied by an ISR.  The ISR cannot access\r
@@ -227,7 +227,7 @@ static inline void prvCheckPendingReadyList( void )
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static inline void prvCheckDelayedList( void )\r
+static void prvCheckDelayedList( void )\r
 {\r
 static portTickType xLastTickCount, xPassedTicks;\r
 corCRCB *pxCRCB;\r