diff --git a/kernel/include/los_config.h b/kernel/include/los_config.h index aec9d487..35db8d1e 100644 --- a/kernel/include/los_config.h +++ b/kernel/include/los_config.h @@ -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 diff --git a/kernel/include/los_task.h b/kernel/include/los_task.h index 1560a27e..e9424644 100644 --- a/kernel/include/los_task.h +++ b/kernel/include/los_task.h @@ -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); *
  • The idle task and swtmr task cannot be deleted.
  • *
  • If delete current task maybe cause unexpected error.
  • *
  • If a task get a mutex is deleted or automatically deleted before release this mutex, other tasks pended - * this mutex maybe never be shchduled.
  • + * this mutex maybe never be scheduled. * * * @param taskID [IN] Type #UINT32 Task ID. The task id value is obtained from task creation.