!774 【OpenHarmony开源贡献者计划2022】fix mempry to memory、satck to stack
Merge pull request !774 from rtos_ding/typo
This commit is contained in:
commit
dc5feb9e19
|
@ -460,7 +460,7 @@ extern UINT8 *m_aucSysMem0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup los_config
|
* @ingroup los_config
|
||||||
* Configuration module tailoring of more mempry pool checking
|
* Configuration module tailoring of more memory pool checking
|
||||||
*/
|
*/
|
||||||
#ifndef LOSCFG_MEM_MUL_POOL
|
#ifndef LOSCFG_MEM_MUL_POOL
|
||||||
#define LOSCFG_MEM_MUL_POOL 1
|
#define LOSCFG_MEM_MUL_POOL 1
|
||||||
|
|
|
@ -457,7 +457,7 @@ typedef struct tagTskInitParam {
|
||||||
TSK_ENTRY_FUNC pfnTaskEntry; /**< Task entrance function */
|
TSK_ENTRY_FUNC pfnTaskEntry; /**< Task entrance function */
|
||||||
UINT16 usTaskPrio; /**< Task priority */
|
UINT16 usTaskPrio; /**< Task priority */
|
||||||
UINT32 uwArg; /**< Task parameters */
|
UINT32 uwArg; /**< Task parameters */
|
||||||
UINTPTR stackAddr; /**< Task satck memory */
|
UINTPTR stackAddr; /**< Task stack memory */
|
||||||
UINT32 uwStackSize; /**< Task stack size */
|
UINT32 uwStackSize; /**< Task stack size */
|
||||||
CHAR *pcName; /**< Task name */
|
CHAR *pcName; /**< Task name */
|
||||||
UINT32 uwResved; /**< Reserved */
|
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>The idle task and swtmr task cannot be deleted.</li>
|
||||||
* <li>If delete current task maybe cause unexpected error.</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
|
* <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>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @param taskID [IN] Type #UINT32 Task ID. The task id value is obtained from task creation.
|
* @param taskID [IN] Type #UINT32 Task ID. The task id value is obtained from task creation.
|
||||||
|
|
Loading…
Reference in New Issue