add global symbol table populate function

This commit is contained in:
2025-10-05 14:02:46 +05:30
parent 01bd7604ed
commit 3abe07c5b2

View File

@ -8,7 +8,7 @@ from ctypes import c_void_p, c_int64
@section("tracepoint/syscalls/sys_enter_execve")
def sometag(ctx: c_void_p) -> c_int64:
print("test")
print(f"{somevalue}")
print(f"{somevalue}") #type: ignore
return c_int64(1)
@bpf