fix:Add LOS_SysDelay declaration.

Close #I3NT3Y

Change-Id: I14a1edc3f9aa06cba28ad51a12f21f6fdcf14fd0
This commit is contained in:
zhushengle 2021-04-23 15:38:11 +08:00
parent 583d177de0
commit 9656d852ab
1 changed files with 6 additions and 7 deletions

View File

@ -1088,25 +1088,24 @@ extern UINT32 LOS_NewTaskIDGet(VOID);
*/ */
extern CHAR* LOS_TaskNameGet(UINT32 taskID); extern CHAR* LOS_TaskNameGet(UINT32 taskID);
/* * /* *
* @ingroup los_hw * @ingroup los_task
* @brief: Function to determine whether task scheduling is required. * @brief: cpu delay.
* *
* @par Description: * @par Description:
* This API is used to Judge and entry task scheduling. * This API is used to cpu delay, no task switching.
* *
* @attention: * @attention:
* <ul><li>None.</li></ul> * <ul><li>None.</li></ul>
* *
* @param None. * @param ticks [IN] delay times.
* *
* @retval: None. * @retval: None.
* @par Dependency: * @par Dependency:
* <ul><li>los_hw.h: the header file that contains the API declaration.</li></ul> * <ul><li>los_task.h: the header file that contains the API declaration.</li></ul>
* @see None. * @see None.
*/ */
extern VOID LOS_Schedule(VOID); extern VOID LOS_SysDelay(UINT32 ticks);
/** /**
* @ingroup los_cpup * @ingroup los_cpup