mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Again, just corrected some comments.
This commit is contained in:
parent
a3cb76d07a
commit
ac94fdddf1
|
@ -274,7 +274,7 @@ typedef struct xTASK_PARAMTERS
|
||||||
/**
|
/**
|
||||||
* task. h
|
* task. h
|
||||||
*<pre>
|
*<pre>
|
||||||
portBASE_TYPE xTaskCreateRestricted( xTaskParameters *pxTaskDefinition, xTaskHandle pxCreatedTask );</pre>
|
portBASE_TYPE xTaskCreateRestricted( xTaskParameters *pxTaskDefinition, xTaskHandle *pxCreatedTask );</pre>
|
||||||
*
|
*
|
||||||
* xTaskCreateRestricted() should only be used in systems that include an MPU
|
* xTaskCreateRestricted() should only be used in systems that include an MPU
|
||||||
* implementation.
|
* implementation.
|
||||||
|
@ -288,10 +288,6 @@ typedef struct xTASK_PARAMTERS
|
||||||
* documentation) plus an optional stack buffer and the memory region
|
* documentation) plus an optional stack buffer and the memory region
|
||||||
* definitions.
|
* definitions.
|
||||||
*
|
*
|
||||||
* @param pcName A descriptive name for the task. This is mainly used to
|
|
||||||
* facilitate debugging. Max length defined by tskMAX_TASK_NAME_LEN - default
|
|
||||||
* is 16.
|
|
||||||
*
|
|
||||||
* @param pxCreatedTask Used to pass back a handle by which the created task
|
* @param pxCreatedTask Used to pass back a handle by which the created task
|
||||||
* can be referenced.
|
* can be referenced.
|
||||||
*
|
*
|
||||||
|
@ -1254,7 +1250,7 @@ void vTaskPriorityDisinherit( xTaskHandle * const pxMutexHolder ) PRIVILEGED_FUN
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Generic version of the task creation function which is in turn called by the
|
* Generic version of the task creation function which is in turn called by the
|
||||||
* xTaskCreate() and xTaskCreateProtected() macros.
|
* xTaskCreate() and xTaskCreateRestricted() macros.
|
||||||
*/
|
*/
|
||||||
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;
|
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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue