| /* SPDX-License-Identifier: GPL-2.0 */ |
| #include <uapi/linux/kcov.h> |
| /* Coverage collection is not enabled yet. */ |
| /* KCOV was initialized, but tracing mode hasn't been chosen yet. */ |
| * Tracing coverage collection mode. |
| * Covered PCs are collected in a per-task buffer. |
| /* Collecting comparison operands mode. */ |
| void kcov_task_init(struct task_struct *t); |
| void kcov_task_exit(struct task_struct *t); |
| static inline void kcov_task_init(struct task_struct *t) {} |
| static inline void kcov_task_exit(struct task_struct *t) {} |
| #endif /* _LINUX_KCOV_H */ |