lib: os: add gcc noreturn attribute for sys_reboot
sys_reboot doesn't return so mark it with noreturn Signed-off-by: Christoph Thurnheer <c.thurnheer@gmx.ch>
This commit is contained in:
parent
fdc92ebb27
commit
ef97121d74
2 changed files with 5 additions and 2 deletions
|
@ -14,6 +14,8 @@
|
|||
#ifndef ZEPHYR_INCLUDE_SYS_REBOOT_H_
|
||||
#define ZEPHYR_INCLUDE_SYS_REBOOT_H_
|
||||
|
||||
#include <toolchain.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
@ -33,7 +35,7 @@ extern "C" {
|
|||
* @return N/A
|
||||
*/
|
||||
|
||||
extern void sys_reboot(int type);
|
||||
extern FUNC_NORETURN void sys_reboot(int type);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
@ -4,13 +4,14 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/reboot.h>
|
||||
#include <kernel.h>
|
||||
#include <sys/printk.h>
|
||||
|
||||
extern void sys_arch_reboot(int type);
|
||||
extern void sys_clock_disable(void);
|
||||
|
||||
void sys_reboot(int type)
|
||||
FUNC_NORETURN void sys_reboot(int type)
|
||||
{
|
||||
(void)irq_lock();
|
||||
#ifdef CONFIG_SYS_CLOCK_EXISTS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue