From 4b7d96d5b2ad6b977b6acfb2418d984907a3c5db Mon Sep 17 00:00:00 2001 From: richardbarry Date: Thu, 1 May 2008 17:16:26 +0000 Subject: [PATCH] Remove inline keywords. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@333 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Source/croutine.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/croutine.c b/Source/croutine.c index 73c08350b..059a87d8d 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; -- 2.39.2