Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
gcov.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_DEBUG_GCOV_H_
8#define ZEPHYR_INCLUDE_DEBUG_GCOV_H_
9
10#ifdef CONFIG_COVERAGE_GCOV
11void gcov_coverage_dump(void);
12void gcov_static_init(void);
13#else
14static inline void gcov_coverage_dump(void) { }
15static inline void gcov_static_init(void) { }
16
17#endif /* CONFIG_COVERAGE */
18
19#endif /* ZEPHYR_INCLUDE_DEBUG_GCOV_H_ */
static void gcov_static_init(void)
Definition: gcov.h:15
static void gcov_coverage_dump(void)
Definition: gcov.h:14