File tree 2 files changed +0
-22
lines changed
agent/src/ebpf/user/extended
2 files changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -39,13 +39,6 @@ int __attribute__ ((weak)) extended_maps_set(struct bpf_tracer *tracer)
39
39
void __attribute__ ((weak )) extended_prog_jump_tables (struct bpf_tracer * tracer ) {
40
40
}
41
41
42
- int __attribute__ ((weak )) extended_proc_event_handler (int pid ,
43
- const char * name ,
44
- enum proc_act_type type )
45
- {
46
- return 0 ;
47
- }
48
-
49
42
int __attribute__ ((weak )) collect_extended_uprobe_syms_from_procfs (struct tracer_probes_conf * conf )
50
43
{
51
44
return 0 ;
Original file line number Diff line number Diff line change @@ -33,21 +33,6 @@ int extended_reader_create(struct bpf_tracer *tracer);
33
33
int extended_maps_set (struct bpf_tracer * tracer );
34
34
void extended_prog_jump_tables (struct bpf_tracer * tracer );
35
35
36
- /**
37
- * @brief **extended_proc_event_handler()** extend the handling of process
38
- * execution and exit events.
39
- * @param pid Process ID
40
- * @param name Process name
41
- * @param PROC_EXEC or PROC_EXIT
42
- * @return 0 on success, non-zero on error
43
- *
44
- * For example, you might want to notify an eBPF program of these events
45
- * so that eBPF can perform the corresponding handling. Extend the handling
46
- * based on your own requirements.
47
- */
48
- int extended_proc_event_handler (int pid , const char * name ,
49
- enum proc_act_type type );
50
-
51
36
/**
52
37
* @brief **collect_extended_uprobe_syms_from_procfs()** extend the handling of uprobe
53
38
* @param conf Tracer probes config
You can’t perform that action at this time.
0 commit comments