gcov.h 426 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DEBUG_GCOV_H_
  7. #define ZEPHYR_INCLUDE_DEBUG_GCOV_H_
  8. #ifdef CONFIG_COVERAGE_GCOV
  9. void gcov_coverage_dump(void);
  10. void gcov_static_init(void);
  11. #else
  12. static inline void gcov_coverage_dump(void) { }
  13. static inline void gcov_static_init(void) { }
  14. #endif /* CONFIG_COVERAGE */
  15. #endif /* ZEPHYR_INCLUDE_DEBUG_GCOV_H_ */