]> git.sur5r.net Git - freertos/commitdiff
Corrected a couple of comments.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 8 Jan 2010 14:19:35 +0000 (14:19 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 8 Jan 2010 14:19:35 +0000 (14:19 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@946 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/include/semphr.h

index 33fe012639f77fce9544636c7f0beb0631c2ff9c..258d72cbd1ab11ddd6a9d7229c4ab9417d1a93c0 100644 (file)
@@ -454,7 +454,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * <pre>\r
  xSemaphoreGiveFromISR( \r
                           xSemaphoreHandle xSemaphore, \r
-                          portBASE_TYPE *pxHigherPriorityTaskWoken\r
+                          signed portBASE_TYPE *pxHigherPriorityTaskWoken\r
                       )</pre>\r
  *\r
  * <i>Macro</i> to  release a semaphore.  The semaphore must have previously been\r
@@ -509,7 +509,7 @@ typedef xQueueHandle xSemaphoreHandle;
  void vTimerISR( void * pvParameters )\r
  {\r
  static unsigned char ucLocalTickCount = 0;\r
- static portBASE_TYPE xHigherPriorityTaskWoken;\r
+ static signed portBASE_TYPE xHigherPriorityTaskWoken;\r
 \r
     // A timer tick has occurred.\r
 \r