thread_analyzer.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright (c) 2019 - 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __STACK_SIZE_ANALYZER_H
  7. #define __STACK_SIZE_ANALYZER_H
  8. #include <stddef.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /** @defgroup thread_analyzer Thread analyzer
  13. * @brief Module for analyzing threads
  14. *
  15. * This module implements functions and the configuration that simplifies
  16. * thread analysis.
  17. * @{
  18. */
  19. struct thread_analyzer_info {
  20. /** The name of the thread or stringified address of the thread handle
  21. * if name is not set.
  22. */
  23. const char *name;
  24. /** The total size of the stack*/
  25. size_t stack_size;
  26. /** Stack size in used */
  27. size_t stack_used;
  28. #ifdef CONFIG_THREAD_RUNTIME_STATS
  29. unsigned int utilization;
  30. #endif
  31. };
  32. /** @brief Thread analyzer stack size callback function
  33. *
  34. * Callback function with thread analysis information.
  35. *
  36. * @param info Thread analysis information.
  37. */
  38. typedef void (*thread_analyzer_cb)(struct thread_analyzer_info *info);
  39. /** @brief Run the thread analyzer and provide information to the callback
  40. *
  41. * This function analyzes the current state for all threads and calls
  42. * a given callback on every thread found.
  43. *
  44. * @param cb The callback function handler
  45. */
  46. void thread_analyzer_run(thread_analyzer_cb cb);
  47. /** @brief Run the thread analyzer and print stack size statistics.
  48. *
  49. * This function runs the thread analyzer and prints the output in standard
  50. * form.
  51. */
  52. void thread_analyzer_print(void);
  53. /** @} */
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. #endif /* __STACK_SIZE_ANALYZER_H */