mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Corrected a couple of comments.
This commit is contained in:
parent
e170cdef52
commit
2dc8e16e68
|
@ -454,7 +454,7 @@ typedef xQueueHandle xSemaphoreHandle;
|
|||
* <pre>
|
||||
xSemaphoreGiveFromISR(
|
||||
xSemaphoreHandle xSemaphore,
|
||||
portBASE_TYPE *pxHigherPriorityTaskWoken
|
||||
signed portBASE_TYPE *pxHigherPriorityTaskWoken
|
||||
)</pre>
|
||||
*
|
||||
* <i>Macro</i> 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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue