]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/include/task.h
Added INCLUDE_xSemaphoreGetMutexHolder() default.
[freertos] / FreeRTOS / Source / include / task.h
index b6a7818a88443ec09a3bbfa9d9354e088bd9cba4..b4d359cddf713292507d8ef22612f65da8671dd9 100644 (file)
@@ -131,7 +131,7 @@ typedef struct xTASK_PARAMTERS
        xMemoryRegion xRegions[ portNUM_CONFIGURABLE_REGIONS ];\r
 } xTaskParameters;\r
 \r
-/* Task states returned by eTaskStateGet. */\r
+/* Task states returned by eTaskGetState. */\r
 typedef enum\r
 {\r
        eRunning = 0,   /* A task is querying the state of itself, so must be running. */\r
@@ -613,9 +613,9 @@ unsigned portBASE_TYPE uxTaskPriorityGet( xTaskHandle pxTask ) PRIVILEGED_FUNCTI
 \r
 /**\r
  * task. h\r
- * <pre>eTaskState eTaskStateGet( xTaskHandle pxTask );</pre>\r
+ * <pre>eTaskState eTaskGetState( xTaskHandle pxTask );</pre>\r
  *\r
- * INCLUDE_eTaskStateGet must be defined as 1 for this function to be available.\r
+ * INCLUDE_eTaskGetState must be defined as 1 for this function to be available.\r
  * See the configuration section for more information.\r
  *\r
  * Obtain the state of any task.  States are encoded by the eTaskState \r
@@ -627,7 +627,7 @@ unsigned portBASE_TYPE uxTaskPriorityGet( xTaskHandle pxTask ) PRIVILEGED_FUNCTI
  * state of the task might change between the function being called, and the\r
  * functions return value being tested by the calling task.\r
  */\r
-eTaskState eTaskStateGet( xTaskHandle pxTask ) PRIVILEGED_FUNCTION;\r
+eTaskState eTaskGetState( xTaskHandle pxTask ) PRIVILEGED_FUNCTION;\r
 \r
 /**\r
  * task. h\r