include/linux/kcov.h
Source file repositories/reference/linux-study-clean/include/linux/kcov.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/kcov.h- Extension
.h- Size
- 3300 bytes
- Lines
- 111
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/sched.huapi/linux/kcov.h
Detected Declarations
struct task_structenum kcov_modefunction kcov_remote_start_commonfunction kcov_remote_start_usbfunction kcov_remote_start_usb_softirqfunction kcov_remote_stop_softirqfunction kcov_task_initfunction kcov_remote_start_common
Annotated Snippet
static inline void kcov_task_init(struct task_struct *t) {}
static inline void kcov_task_exit(struct task_struct *t) {}
static inline void kcov_prepare_switch(struct task_struct *t) {}
static inline void kcov_finish_switch(struct task_struct *t) {}
static inline void kcov_remote_start(u64 handle) {}
static inline void kcov_remote_stop(void) {}
static inline struct kcov_common_handle_id kcov_common_handle(void)
{
return (struct kcov_common_handle_id){};
}
static inline void kcov_remote_start_common(struct kcov_common_handle_id id) {}
static inline void kcov_remote_start_usb(u64 id) {}
static inline void kcov_remote_start_usb_softirq(u64 id) {}
static inline void kcov_remote_stop_softirq(void) {}
#endif /* CONFIG_KCOV */
#endif /* _LINUX_KCOV_H */
Annotation
- Immediate include surface: `linux/sched.h`, `uapi/linux/kcov.h`.
- Detected declarations: `struct task_struct`, `enum kcov_mode`, `function kcov_remote_start_common`, `function kcov_remote_start_usb`, `function kcov_remote_start_usb_softirq`, `function kcov_remote_stop_softirq`, `function kcov_task_init`, `function kcov_remote_start_common`.
- Atlas domain: Core OS / Core Kernel Interface.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.