fix mempry to memory、satck to stack

Signed-off-by: juan <juan@liuxiuhai.cn>
This commit is contained in:
juan 2022-08-11 21:18:15 +08:00
parent ae692bfbc4
commit 933efffba7
2 changed files with 3 additions and 3 deletions

View File

@ -460,7 +460,7 @@ extern UINT8 *m_aucSysMem0;
/**
* @ingroup los_config
* Configuration module tailoring of more mempry pool checking
* Configuration module tailoring of more memory pool checking
*/
#ifndef LOSCFG_MEM_MUL_POOL
#define LOSCFG_MEM_MUL_POOL 1

View File

@ -457,7 +457,7 @@ typedef struct tagTskInitParam {
TSK_ENTRY_FUNC pfnTaskEntry; /**< Task entrance function */
UINT16 usTaskPrio; /**< Task priority */
UINT32 uwArg; /**< Task parameters */
UINTPTR stackAddr; /**< Task satck memory */
UINTPTR stackAddr; /**< Task stack memory */
UINT32 uwStackSize; /**< Task stack size */
CHAR *pcName; /**< Task name */
UINT32 uwResved; /**< Reserved */
@ -746,7 +746,7 @@ extern UINT32 LOS_TaskSuspend(UINT32 taskID);
* <li>The idle task and swtmr task cannot be deleted.</li>
* <li>If delete current task maybe cause unexpected error.</li>
* <li>If a task get a mutex is deleted or automatically deleted before release this mutex, other tasks pended
* this mutex maybe never be shchduled.</li>
* this mutex maybe never be scheduled.</li>
* </ul>
*
* @param taskID [IN] Type #UINT32 Task ID. The task id value is obtained from task creation.