]> git.sur5r.net Git - freertos/commitdiff
Remove whitespace only.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 10 Oct 2012 09:53:44 +0000 (09:53 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 10 Oct 2012 09:53:44 +0000 (09:53 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1789 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Source/list.c
FreeRTOS/Source/queue.c
FreeRTOS/Source/timers.c

index 40e2bfd4049ddaa087a1eac85d42914b6661ba16..130bcc28cf4749c310ff07ff41a636a983c46fd8 100644 (file)
@@ -40,7 +40,7 @@
     FreeRTOS WEB site.\r
 \r
     1 tab == 4 spaces!\r
-    \r
+\r
     ***************************************************************************\r
      *                                                                       *\r
      *    Having a problem?  Start by reading the FAQ "My application does   *\r
      *                                                                       *\r
     ***************************************************************************\r
 \r
-    \r
-    http://www.FreeRTOS.org - Documentation, training, latest information, \r
+\r
+    http://www.FreeRTOS.org - Documentation, training, latest information,\r
     license and contact details.\r
-    \r
+\r
     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
     including FreeRTOS+Trace - an indispensable productivity tool.\r
 \r
-    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
-    the code with commercial support, indemnification, and middleware, under \r
+    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell\r
+    the code with commercial support, indemnification, and middleware, under\r
     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
-    provide a safety engineered and independently SIL3 certified version under \r
+    provide a safety engineered and independently SIL3 certified version under\r
     the SafeRTOS brand: http://www.SafeRTOS.com.\r
 */\r
 \r
@@ -159,7 +159,7 @@ portTickType xValueOfInsertion;
                           before vTaskStartScheduler() has been called?).\r
                See http://www.freertos.org/FAQHelp.html for more tips.\r
                **********************************************************************/\r
-               \r
+\r
                for( pxIterator = ( xListItem * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext )\r
                {\r
                        /* There is nothing to do here, we are just iterating to the\r
@@ -186,7 +186,7 @@ xList * pxList;
 \r
        pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious;\r
        pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext;\r
-       \r
+\r
        /* The list item knows which list it is in.  Obtain the list from the list\r
        item. */\r
        pxList = ( xList * ) pxItemToRemove->pvContainer;\r
@@ -199,7 +199,7 @@ xList * pxList;
 \r
        pxItemToRemove->pvContainer = NULL;\r
        ( pxList->uxNumberOfItems )--;\r
-       \r
+\r
        return pxList->uxNumberOfItems;\r
 }\r
 /*-----------------------------------------------------------*/\r
index 090028d32caf0454fe9390b7e5feafa527b9fc07..7d4ac3268e5315bba31ec2b852f7611fcc8447d4 100644 (file)
@@ -40,7 +40,7 @@
     FreeRTOS WEB site.\r
 \r
     1 tab == 4 spaces!\r
-    \r
+\r
     ***************************************************************************\r
      *                                                                       *\r
      *    Having a problem?  Start by reading the FAQ "My application does   *\r
      *                                                                       *\r
     ***************************************************************************\r
 \r
-    \r
-    http://www.FreeRTOS.org - Documentation, training, latest information, \r
+\r
+    http://www.FreeRTOS.org - Documentation, training, latest information,\r
     license and contact details.\r
-    \r
+\r
     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
     including FreeRTOS+Trace - an indispensable productivity tool.\r
 \r
-    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
-    the code with commercial support, indemnification, and middleware, under \r
+    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell\r
+    the code with commercial support, indemnification, and middleware, under\r
     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
-    provide a safety engineered and independently SIL3 certified version under \r
+    provide a safety engineered and independently SIL3 certified version under\r
     the SafeRTOS brand: http://www.SafeRTOS.com.\r
 */\r
 \r
@@ -135,7 +135,7 @@ typedef struct QueueDefinition
 \r
        volatile signed portBASE_TYPE xRxLock;  /*< Stores the number of items received from the queue (removed from the queue) while the queue was locked.  Set to queueUNLOCKED when the queue is not locked. */\r
        volatile signed portBASE_TYPE xTxLock;  /*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked.  Set to queueUNLOCKED when the queue is not locked. */\r
-       \r
+\r
        #if ( configUSE_TRACE_FACILITY == 1 )\r
                unsigned char ucQueueNumber;\r
                unsigned char ucQueueType;\r
@@ -291,10 +291,10 @@ portBASE_TYPE xQueueGenericReset( xQueueHandle pxQueue, portBASE_TYPE xNewQueue
 \r
                if( xNewQueue == pdFALSE )\r
                {\r
-                       /* If there are tasks blocked waiting to read from the queue, then \r
-                       the tasks will remain blocked as after this function exits the queue \r
-                       will still be empty.  If there are tasks blocked waiting to     write to \r
-                       the queue, then one should be unblocked as after this function exits \r
+                       /* If there are tasks blocked waiting to read from the queue, then\r
+                       the tasks will remain blocked as after this function exits the queue\r
+                       will still be empty.  If there are tasks blocked waiting to     write to\r
+                       the queue, then one should be unblocked as after this function exits\r
                        it will be possible to write to it. */\r
                        if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
                        {\r
@@ -308,7 +308,7 @@ portBASE_TYPE xQueueGenericReset( xQueueHandle pxQueue, portBASE_TYPE xNewQueue
                {\r
                        /* Ensure the event queues start in the correct state. */\r
                        vListInitialise( &( pxQueue->xTasksWaitingToSend ) );\r
-                       vListInitialise( &( pxQueue->xTasksWaitingToReceive ) );                \r
+                       vListInitialise( &( pxQueue->xTasksWaitingToReceive ) );\r
                }\r
        }\r
        taskEXIT_CRITICAL();\r
@@ -438,7 +438,7 @@ xQueueHandle xReturn = NULL;
                /* This function is called by xSemaphoreGetMutexHolder(), and should not\r
                be called directly.  Note:  This is is a good way of determining if the\r
                calling task is the mutex holder, but not a good way of determining the\r
-               identity of the mutex holder, as the holder may change between the \r
+               identity of the mutex holder, as the holder may change between the\r
                following critical section exiting and the function returning. */\r
                taskENTER_CRITICAL();\r
                {\r
@@ -452,7 +452,7 @@ xQueueHandle xReturn = NULL;
                        }\r
                }\r
                taskEXIT_CRITICAL();\r
-               \r
+\r
                return pxReturn;\r
        }\r
 \r
index ef80cd2dda52d4c3bd75c35c53e66e0af07a6aa4..faf341b4b6ecd967d2882c5876137294325ee38f 100644 (file)
@@ -40,7 +40,7 @@
     FreeRTOS WEB site.\r
 \r
     1 tab == 4 spaces!\r
-    \r
+\r
     ***************************************************************************\r
      *                                                                       *\r
      *    Having a problem?  Start by reading the FAQ "My application does   *\r
      *                                                                       *\r
     ***************************************************************************\r
 \r
-    \r
-    http://www.FreeRTOS.org - Documentation, training, latest information, \r
+\r
+    http://www.FreeRTOS.org - Documentation, training, latest information,\r
     license and contact details.\r
-    \r
+\r
     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
     including FreeRTOS+Trace - an indispensable productivity tool.\r
 \r
-    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
-    the code with commercial support, indemnification, and middleware, under \r
+    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell\r
+    the code with commercial support, indemnification, and middleware, under\r
     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
-    provide a safety engineered and independently SIL3 certified version under \r
+    provide a safety engineered and independently SIL3 certified version under\r
     the SafeRTOS brand: http://www.SafeRTOS.com.\r
 */\r
 \r
@@ -118,9 +118,9 @@ PRIVILEGED_DATA static xList *pxOverflowTimerList;
 PRIVILEGED_DATA static xQueueHandle xTimerQueue = NULL;\r
 \r
 #if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )\r
-       \r
+\r
        PRIVILEGED_DATA static xTaskHandle xTimerTaskHandle = NULL;\r
-       \r
+\r
 #endif\r
 \r
 /*-----------------------------------------------------------*/\r
@@ -200,7 +200,7 @@ portBASE_TYPE xReturn = pdFAIL;
                {\r
                        /* Create the timer task, storing its handle in xTimerTaskHandle so\r
                        it can be returned by the xTimerGetTimerDaemonTaskHandle() function. */\r
-                       xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Tmr Svc", ( unsigned short ) configTIMER_TASK_STACK_DEPTH, NULL, ( ( unsigned portBASE_TYPE ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, &xTimerTaskHandle );       \r
+                       xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Tmr Svc", ( unsigned short ) configTIMER_TASK_STACK_DEPTH, NULL, ( ( unsigned portBASE_TYPE ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, &xTimerTaskHandle );\r
                }\r
                #else\r
                {\r
@@ -233,7 +233,7 @@ xTIMER *pxNewTimer;
                        /* Ensure the infrastructure used by the timer service task has been\r
                        created/initialised. */\r
                        prvCheckForValidListAndQueue();\r
-       \r
+\r
                        /* Initialise the timer structure members using the function parameters. */\r
                        pxNewTimer->pcTimerName = pcTimerName;\r
                        pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks;\r
@@ -241,7 +241,7 @@ xTIMER *pxNewTimer;
                        pxNewTimer->pvTimerID = pvTimerID;\r
                        pxNewTimer->pxCallbackFunction = pxCallbackFunction;\r
                        vListInitialiseItem( &( pxNewTimer->xTimerListItem ) );\r
-                       \r
+\r
                        traceTIMER_CREATE( pxNewTimer );\r
                }\r
                else\r
@@ -249,7 +249,7 @@ xTIMER *pxNewTimer;
                        traceTIMER_CREATE_FAILED();\r
                }\r
        }\r
-       \r
+\r
        return ( xTimerHandle ) pxNewTimer;\r
 }\r
 /*-----------------------------------------------------------*/\r
@@ -283,10 +283,10 @@ xTIMER_MESSAGE xMessage;
                {\r
                        xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken );\r
                }\r
-               \r
+\r
                traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn );\r
        }\r
-       \r
+\r
        return xReturn;\r
 }\r
 /*-----------------------------------------------------------*/\r
@@ -300,7 +300,7 @@ xTIMER_MESSAGE xMessage;
                configASSERT( ( xTimerTaskHandle != NULL ) );\r
                return xTimerTaskHandle;\r
        }\r
-       \r
+\r
 #endif\r
 /*-----------------------------------------------------------*/\r
 \r
@@ -357,9 +357,9 @@ portBASE_TYPE xListWasEmpty;
                /* If a timer has expired, process it.  Otherwise, block this task\r
                until either a timer does expire, or a command is received. */\r
                prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty );\r
-               \r
+\r
                /* Empty the command queue. */\r
-               prvProcessReceivedCommands();           \r
+               prvProcessReceivedCommands();\r
        }\r
 }\r
 /*-----------------------------------------------------------*/\r
@@ -445,7 +445,7 @@ portTickType xTimeNow;
 PRIVILEGED_DATA static portTickType xLastTime = ( portTickType ) 0U;\r
 \r
        xTimeNow = xTaskGetTickCount();\r
-       \r
+\r
        if( xTimeNow < xLastTime )\r
        {\r
                prvSwitchTimerLists( xLastTime );\r
@@ -455,9 +455,9 @@ PRIVILEGED_DATA static portTickType xLastTime = ( portTickType ) 0U;
        {\r
                *pxTimerListsWereSwitched = pdFALSE;\r
        }\r
-       \r
+\r
        xLastTime = xTimeNow;\r
-       \r
+\r
        return xTimeNow;\r
 }\r
 /*-----------------------------------------------------------*/\r
@@ -468,7 +468,7 @@ portBASE_TYPE xProcessTimerNow = pdFALSE;
 \r
        listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime );\r
        listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer );\r
-       \r
+\r
        if( xNextExpiryTime <= xTimeNow )\r
        {\r
                /* Has the expiry time elapsed between the command to start/reset a\r
@@ -531,10 +531,10 @@ portTickType xTimeNow;
                }\r
 \r
                traceTIMER_COMMAND_RECEIVED( pxTimer, xMessage.xMessageID, xMessage.xMessageValue );\r
-               \r
+\r
                switch( xMessage.xMessageID )\r
                {\r
-                       case tmrCOMMAND_START : \r
+                       case tmrCOMMAND_START :\r
                                /* Start or restart a timer. */\r
                                if( prvInsertTimerInActiveList( pxTimer,  xMessage.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.xMessageValue ) == pdTRUE )\r
                                {\r
@@ -551,7 +551,7 @@ portTickType xTimeNow;
                                }\r
                                break;\r
 \r
-                       case tmrCOMMAND_STOP :  \r
+                       case tmrCOMMAND_STOP :\r
                                /* The timer has already been removed from the active list.\r
                                There is nothing to do here. */\r
                                break;\r
@@ -568,7 +568,7 @@ portTickType xTimeNow;
                                vPortFree( pxTimer );\r
                                break;\r
 \r
-                       default :                       \r
+                       default :\r
                                /* Don't expect to get here. */\r
                                break;\r
                }\r
@@ -585,7 +585,7 @@ portBASE_TYPE xResult;
 \r
        /* Remove compiler warnings if configASSERT() is not defined. */\r
        ( void ) xLastTime;\r
-       \r
+\r
        /* The tick count has overflowed.  The timer lists must be switched.\r
        If there are any timers still referenced from the current timer list\r
        then they must have expired and should be processed before the lists\r