From 2dc8e16e6899a0bd1af8285af144edf7fe97a3e6 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Fri, 8 Jan 2010 14:19:35 +0000 Subject: [PATCH] Corrected a couple of comments. --- 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.