kernel_version.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* kernel version support */
  2. /*
  3. * Copyright (c) 2015 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_KERNEL_VERSION_H_
  8. #define ZEPHYR_INCLUDE_KERNEL_VERSION_H_
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @defgroup version_apis Version APIs
  14. * @ingroup kernel_apis
  15. * @{
  16. *
  17. * The kernel version has been converted from a string to a four-byte
  18. * quantity that is divided into two parts.
  19. *
  20. * Part 1: The three most significant bytes represent the kernel's
  21. * numeric version, x.y.z. These fields denote:
  22. * x -- major release
  23. * y -- minor release
  24. * z -- patchlevel release
  25. * Each of these elements must therefore be in the range 0 to 255, inclusive.
  26. *
  27. * Part 2: The least significant byte is reserved for future use.
  28. */
  29. #define SYS_KERNEL_VER_MAJOR(ver) (((ver) >> 24) & 0xFF)
  30. #define SYS_KERNEL_VER_MINOR(ver) (((ver) >> 16) & 0xFF)
  31. #define SYS_KERNEL_VER_PATCHLEVEL(ver) (((ver) >> 8) & 0xFF)
  32. /* kernel version routines */
  33. /**
  34. * @brief Return the kernel version of the present build
  35. *
  36. * The kernel version is a four-byte value, whose format is described in the
  37. * file "kernel_version.h".
  38. *
  39. * @return kernel version
  40. */
  41. extern uint32_t sys_kernel_version_get(void);
  42. /**
  43. * @}
  44. */
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif /* ZEPHYR_INCLUDE_KERNEL_VERSION_H_ */