From: richardbarry Date: Fri, 8 Jan 2010 14:19:35 +0000 (+0000) Subject: Corrected a couple of comments. X-Git-Tag: V6.0.3~40 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6b0a0fd1cb83782311bf156559fade8e06593bf9;p=freertos Corrected a couple of comments. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@946 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/include/semphr.h b/Source/include/semphr.h index 33fe01263..258d72cbd 100644 --- a/Source/include/semphr.h +++ b/Source/include/semphr.h @@ -454,7 +454,7 @@ typedef xQueueHandle xSemaphoreHandle; *
  xSemaphoreGiveFromISR( 
                           xSemaphoreHandle xSemaphore, 
-                          portBASE_TYPE *pxHigherPriorityTaskWoken
+                          signed portBASE_TYPE *pxHigherPriorityTaskWoken
                       )
* * Macro to release a semaphore. The semaphore must have previously been @@ -509,7 +509,7 @@ typedef xQueueHandle xSemaphoreHandle; void vTimerISR( void * pvParameters ) { static unsigned char ucLocalTickCount = 0; - static portBASE_TYPE xHigherPriorityTaskWoken; + static signed portBASE_TYPE xHigherPriorityTaskWoken; // A timer tick has occurred.