Refactor the README

This commit is contained in:
yunwei37
2023-05-30 18:39:48 +08:00
committed by 云微
parent e9fbd43a59
commit 3076cd9a2d
4 changed files with 27 additions and 18 deletions

View File

@@ -16,6 +16,6 @@ int handle_tp(void *ctx)
pid_t pid = bpf_get_current_pid_tgid() >> 32;
if (pid_filter && pid != pid_filter)
return 0;
bpf_printk("BPF triggered from PID %d.\n", pid);
bpf_printk("BPF triggered sys_enter_write from PID %d.\n", pid);
return 0;
}