summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-05-01 17:16:26 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2008-05-01 17:16:26 +0000
commitb98db870ebcd934ec9e8bcd3aa37eaac279f541f (patch)
tree7a239cc3267e46be0da2f3c4a142664d6df1d6a4 /Source
parent9e857f65a2a19b35de563f0a39e245d0d7bcca18 (diff)
downloadfreertos-b98db870ebcd934ec9e8bcd3aa37eaac279f541f.tar.gz
freertos-b98db870ebcd934ec9e8bcd3aa37eaac279f541f.tar.bz2
freertos-b98db870ebcd934ec9e8bcd3aa37eaac279f541f.tar.xz
Remove inline keywords.
git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@333 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'Source')
-rw-r--r--Source/croutine.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/croutine.c b/Source/croutine.c
index 73c08350..059a87d8 100644
--- a/Source/croutine.c
+++ b/Source/croutine.c
@@ -95,7 +95,7 @@ static void prvInitialiseCoRoutineLists( void );
* in the pending ready list in order that they can later be moved to the ready
* list by the co-routine scheduler.
*/
-static inline void prvCheckPendingReadyList( void );
+static void prvCheckPendingReadyList( void );
/*
* Macro that looks at the list of co-routines that are currently delayed to
@@ -105,7 +105,7 @@ static inline void prvCheckPendingReadyList( void );
* meaning once one co-routine has been found whose timer has not expired
* we need not look any further down the list.
*/
-static inline void prvCheckDelayedList( void );
+static void prvCheckDelayedList( void );
/*-----------------------------------------------------------*/
@@ -204,7 +204,7 @@ portTickType xTimeToWake;
}
/*-----------------------------------------------------------*/
-static inline void prvCheckPendingReadyList( void )
+static void prvCheckPendingReadyList( void )
{
/* Are there any co-routines waiting to get moved to the ready list? These
are co-routines that have been readied by an ISR. The ISR cannot access
@@ -227,7 +227,7 @@ static inline void prvCheckPendingReadyList( void )
}
/*-----------------------------------------------------------*/
-static inline void prvCheckDelayedList( void )
+static void prvCheckDelayedList( void )
{
static portTickType xLastTickCount, xPassedTicks;
corCRCB *pxCRCB;