]> git.sur5r.net Git - freertos/commitdiff
Formatting only.
authorRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 19 May 2009 10:34:57 +0000 (10:34 +0000)
committerRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 19 May 2009 10:34:57 +0000 (10:34 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@724 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/queue.c

index 436af98a05a9c3c9d1c871ab9eb123a1fb0f8d83..9211cb4677fdeaaf576c009f60e623720a6bf4db 100644 (file)
@@ -3,20 +3,20 @@
 \r
        This file is part of the FreeRTOS.org distribution.\r
 \r
-       FreeRTOS.org is free software; you can redistribute it and/or modify it \r
+       FreeRTOS.org is free software; you can redistribute it and/or modify it\r
        under the terms of the GNU General Public License (version 2) as published\r
        by the Free Software Foundation and modified by the FreeRTOS exception.\r
 \r
        FreeRTOS.org is distributed in the hope that it will be useful, but WITHOUT\r
-       ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or \r
-       FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for \r
+       ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
+       FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
        more details.\r
 \r
-       You should have received a copy of the GNU General Public License along \r
-       with FreeRTOS.org; if not, write to the Free Software Foundation, Inc., 59 \r
+       You should have received a copy of the GNU General Public License along\r
+       with FreeRTOS.org; if not, write to the Free Software Foundation, Inc., 59\r
        Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
 \r
-       A special exception to the GPL is included to allow you to distribute a \r
+       A special exception to the GPL is included to allow you to distribute a\r
        combined work that includes FreeRTOS.org without being obliged to provide\r
        the source code for any proprietary components.  See the licensing section\r
        of http://www.FreeRTOS.org for full details.\r
@@ -480,7 +480,7 @@ xTimeOutType xTimeOut;
                        {\r
                                if( xTicksToWait == ( portTickType ) 0 )\r
                                {\r
-                                       /* The queue was full and no block time is specified (or \r
+                                       /* The queue was full and no block time is specified (or\r
                                        the block time has expired) so leave now. */\r
                                        taskEXIT_CRITICAL();\r
                                        traceQUEUE_SEND_FAILED( pxQueue );\r
@@ -814,7 +814,7 @@ signed portCHAR *pcOriginalReadPosition;
        {\r
                taskENTER_CRITICAL();\r
                {\r
-                       /* Is there space on the queue now?  To be running we must be\r
+                       /* Is there data in the queue now?  To be running we must be\r
                        the highest priority task wanting to access the queue. */               \r
                        if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )\r
                        {\r
@@ -879,7 +879,7 @@ signed portCHAR *pcOriginalReadPosition;
                        {\r
                                if( xTicksToWait == ( portTickType ) 0 )\r
                                {\r
-                                       /* The queue was empty and no block time is specified (or \r
+                                       /* The queue was empty and no block time is specified (or\r
                                        the block time has expired) so leave now. */                            \r
                                        taskEXIT_CRITICAL();\r
                                        traceQUEUE_RECEIVE_FAILED( pxQueue );\r