tools/perf/perf-read-vdso.c
Source file repositories/reference/linux-study-clean/tools/perf/perf-read-vdso.c
File Facts
- System
- Linux kernel
- Corpus path
tools/perf/perf-read-vdso.c- Extension
.c- Size
- 547 bytes
- Lines
- 36
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
Dependency Surface
stdio.hstring.hutil/find-map.c
Detected Declarations
function find_map
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
#include <stdio.h>
#include <string.h>
#define VDSO__MAP_NAME "[vdso]"
/*
* Include definition of find_map() also used in util/vdso.c for
* building perf.
*/
#include "util/find-map.c"
int main(void)
{
void *start, *end;
size_t size, written;
if (find_map(&start, &end, VDSO__MAP_NAME))
return 1;
size = end - start;
while (size) {
written = fwrite(start, 1, size, stdout);
if (!written)
return 1;
start += written;
size -= written;
}
if (fflush(stdout))
return 1;
return 0;
}
Annotation
- Immediate include surface: `stdio.h`, `string.h`, `util/find-map.c`.
- Detected declarations: `function find_map`.
- Atlas domain: Support Tooling And Documentation / tools.
- 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.