]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/include/semphr.h
Map portTICK_RATE_MS to portTICK_PERIOD_MS.
[freertos] / FreeRTOS / Source / include / semphr.h
index 638a6d25c98435a0e58fde5b29ac44725f3d1047..8a21e9655c48ebc14e5102a187a0dd0565410055 100644 (file)
@@ -195,7 +195,7 @@ typedef QueueHandle_t SemaphoreHandle_t;
  * the semaphore was created.\r
  *\r
  * @param xBlockTime The time in ticks to wait for the semaphore to become\r
- * available.  The macro portTICK_RATE_MS can be used to convert this to a\r
+ * available.  The macro portTICK_PERIOD_MS can be used to convert this to a\r
  * real time.  A block time of zero can be used to poll the semaphore.  A block\r
  * time of portMAX_DELAY can be used to block indefinitely (provided\r
  * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h).\r
@@ -274,7 +274,7 @@ typedef QueueHandle_t SemaphoreHandle_t;
  * handle returned by xSemaphoreCreateRecursiveMutex();\r
  *\r
  * @param xBlockTime The time in ticks to wait for the semaphore to become\r
- * available.  The macro portTICK_RATE_MS can be used to convert this to a\r
+ * available.  The macro portTICK_PERIOD_MS can be used to convert this to a\r
  * real time.  A block time of zero can be used to poll the semaphore.  If\r
  * the task already owns the semaphore then xSemaphoreTakeRecursive() will\r
  * return immediately no matter what the value of xBlockTime.\r