object_tracing.h 816 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (c) 2016 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_THREAD_MONITOR_H_
  7. #define ZEPHYR_INCLUDE_THREAD_MONITOR_H_
  8. #include <kernel.h>
  9. #include <kernel_structs.h>
  10. /**
  11. * @def SYS_THREAD_MONITOR_HEAD
  12. *
  13. * @brief Head element of the thread monitor list.
  14. *
  15. * @details Access the head element of the thread monitor list.
  16. *
  17. */
  18. #define SYS_THREAD_MONITOR_HEAD ((struct k_thread *)(_kernel.threads))
  19. /**
  20. * @def SYS_THREAD_MONITOR_NEXT
  21. *
  22. * @brief Gets a thread node's next element.
  23. *
  24. * @details Given a node in a thread monitor list, gets the next
  25. * element in the list.
  26. *
  27. * @param obj Object to get the next element from.
  28. */
  29. #define SYS_THREAD_MONITOR_NEXT(obj) (((struct k_thread *)obj)->next_thread)
  30. #endif /* ZEPHYR_INCLUDE_THREAD_MONITOR_H_ */