Add CI for libbpf base examples and kprobe (#45)

* add ci for profile

* fix unnecessary code in 7

* fix exit code 124

* fix llvm-strip

* fix trailing space
This commit is contained in:
云微
2023-07-17 20:23:00 +08:00
committed by GitHub
parent f1c9cba2c4
commit 3ee14a9224
5 changed files with 50 additions and 11 deletions

View File

@@ -57,7 +57,6 @@ int tracepoint__syscalls__sys_enter_execve(struct trace_event_raw_sys_enter* ctx
uid_t uid = (u32)bpf_get_current_uid_gid();
id = bpf_get_current_pid_tgid();
pid = (pid_t)id;
tgid = id >> 32;
event.pid = tgid;

View File

@@ -20,7 +20,6 @@ int tracepoint__syscalls__sys_enter_execve(struct trace_event_raw_sys_enter* ctx
uid_t uid = (u32)bpf_get_current_uid_gid();
id = bpf_get_current_pid_tgid();
pid = (pid_t)id;
tgid = id >> 32;
event.pid = tgid;