From 6b0a0fd1cb83782311bf156559fade8e06593bf9 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Fri, 8 Jan 2010 14:19:35 +0000 Subject: [PATCH] Corrected a couple of comments. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@946 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Source/include/semphr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.39.5