reboot.h 821 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Common target reboot functionality
  9. *
  10. * @details See subsys/os/Kconfig and the reboot help for details.
  11. */
  12. #ifndef ZEPHYR_INCLUDE_SYS_REBOOT_H_
  13. #define ZEPHYR_INCLUDE_SYS_REBOOT_H_
  14. #include <toolchain.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #define SYS_REBOOT_WARM 0
  19. #define SYS_REBOOT_COLD 1
  20. /**
  21. * @brief Reboot the system
  22. *
  23. * Reboot the system in the manner specified by @a type. Not all architectures
  24. * or platforms support the various reboot types (SYS_REBOOT_COLD,
  25. * SYS_REBOOT_WARM).
  26. *
  27. * When successful, this routine does not return.
  28. *
  29. * @return N/A
  30. */
  31. extern FUNC_NORETURN void sys_reboot(int type);
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif /* ZEPHYR_INCLUDE_SYS_REBOOT_H_ */