reboot.c 506 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <sys/reboot.h>
  7. #include <kernel.h>
  8. #include <sys/printk.h>
  9. extern void sys_arch_reboot(int type);
  10. extern void sys_clock_disable(void);
  11. FUNC_NORETURN void sys_reboot(int type)
  12. {
  13. (void)irq_lock();
  14. #ifdef CONFIG_SYS_CLOCK_EXISTS
  15. sys_clock_disable();
  16. #endif
  17. sys_arch_reboot(type);
  18. /* should never get here */
  19. printk("Failed to reboot: spinning endlessly...\n");
  20. for (;;) {
  21. k_cpu_idle();
  22. }
  23. }