]> git.sur5r.net Git - freertos/commitdiff
Again, just corrected some comments.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 8 Jan 2010 14:21:33 +0000 (14:21 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 8 Jan 2010 14:21:33 +0000 (14:21 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@948 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/include/task.h

index d3c830c98239cfd6d9c25ae094dde4c6768f72d0..30f3bf40ae052dae8e61dee4e03075881fe92d85 100644 (file)
@@ -274,7 +274,7 @@ typedef struct xTASK_PARAMTERS
 /**\r
  * task. h\r
  *<pre>\r
- portBASE_TYPE xTaskCreateRestricted( xTaskParameters *pxTaskDefinition, xTaskHandle pxCreatedTask );</pre>\r
+ portBASE_TYPE xTaskCreateRestricted( xTaskParameters *pxTaskDefinition, xTaskHandle *pxCreatedTask );</pre>\r
  *\r
  * xTaskCreateRestricted() should only be used in systems that include an MPU\r
  * implementation.\r
@@ -288,10 +288,6 @@ typedef struct xTASK_PARAMTERS
  * documentation) plus an optional stack buffer and the memory region \r
  * definitions.\r
  *\r
- * @param pcName A descriptive name for the task.  This is mainly used to\r
- * facilitate debugging.  Max length defined by tskMAX_TASK_NAME_LEN - default\r
- * is 16.\r
- *\r
  * @param pxCreatedTask Used to pass back a handle by which the created task\r
  * can be referenced.\r
  *\r
@@ -1254,7 +1250,7 @@ void vTaskPriorityDisinherit( xTaskHandle * const pxMutexHolder ) PRIVILEGED_FUN
 \r
 /*\r
  * Generic version of the task creation function which is in turn called by the\r
- * xTaskCreate() and xTaskCreateProtected() macros.\r
+ * xTaskCreate() and xTaskCreateRestricted() macros.\r
  */\r
 signed portBASE_TYPE xTaskGenericCreate( pdTASK_CODE pvTaskCode, const signed char * const pcName, unsigned short usStackDepth, void *pvParameters, unsigned portBASE_TYPE uxPriority, xTaskHandle *pxCreatedTask, portSTACK_TYPE *puxStackBuffer, const xMemoryRegion * const xRegions ) PRIVILEGED_FUNCTION;\r
 \r