!79 将NORETURN声明放到函数前,KEIL不支持放在函数后

Merge pull request !79 from Caoruihong/fix_noreturn
This commit is contained in:
openharmony_ci 2021-04-22 11:26:45 +08:00 committed by Gitee
commit 424f7ad6dc
2 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@ extern VOID *HalTskStackInit(UINT32 taskID, UINT32 stackSize, VOID *topStack);
* <ul><li>los_hw.h: the header file that contains the API declaration.</li></ul>
* @see None.
*/
LITE_OS_SEC_TEXT_MINOR VOID HalSysExit(VOID) NORETURN;
LITE_OS_SEC_TEXT_MINOR NORETURN VOID HalSysExit(VOID);
/* *
* @ingroup los_context

View File

@ -501,8 +501,8 @@ extern VOID LOS_Msleep(UINT32 mSecs);
* @see
*/
extern UINT32 LOS_Start(VOID);
extern VOID LOS_Reboot(VOID) NORETURN;
extern VOID LOS_Panic(const CHAR *fmt, ...) NORETURN;
extern NORETURN VOID LOS_Reboot(VOID);
extern NORETURN VOID LOS_Panic(const CHAR *fmt, ...);
/**