stack_backtrace.h 767 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief cpu load statistic
  9. */
  10. #ifndef __INCLUDE_STACK_BACKTRACE_H__
  11. #define __INCLUDE_STACK_BACKTRACE_H__
  12. #include <kernel.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #ifdef CONFIG_ARM_UNWIND
  17. void dump_stack(void);
  18. void show_thread_stack(struct k_thread *thread);
  19. void show_all_threads_stack(void);
  20. #else /* !CONFIG_STACK_BACKTRACE */
  21. static inline void dump_stack(void)
  22. {
  23. }
  24. static inline void show_thread_stack(struct k_thread *thread)
  25. {
  26. ARG_UNUSED(thread);
  27. }
  28. static inline void show_all_threads_stack(void)
  29. {
  30. }
  31. #endif /* !CONFIG_STACK_BACKTRACE */
  32. /**
  33. * @}
  34. */
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif /* __INCLUDE_STACK_BACKTRACE_H__ */