tools/testing/selftests/bpf/progs/uprobe_multi_consumers.c

Source file repositories/reference/linux-study-clean/tools/testing/selftests/bpf/progs/uprobe_multi_consumers.c

File Facts

System
Linux kernel
Corpus path
tools/testing/selftests/bpf/progs/uprobe_multi_consumers.c
Extension
.c
Size
618 bytes
Lines
40
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.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
#include <stdbool.h>
#include "bpf_kfuncs.h"
#include "bpf_misc.h"

char _license[] SEC("license") = "GPL";

__u64 uprobe_result[4];

SEC("uprobe.multi")
int uprobe_0(struct pt_regs *ctx)
{
	uprobe_result[0]++;
	return 0;
}

SEC("uprobe.multi")
int uprobe_1(struct pt_regs *ctx)
{
	uprobe_result[1]++;
	return 0;
}

SEC("uprobe.session")
int uprobe_2(struct pt_regs *ctx)
{
	uprobe_result[2]++;
	return 0;
}

SEC("uprobe.session")
int uprobe_3(struct pt_regs *ctx)
{
	uprobe_result[3]++;
	return 1;
}

Annotation

Implementation Notes