Add constant check (maybe broken) and also a globals pass

This commit is contained in:
2025-09-03 18:30:52 +05:30
parent 55b467b337
commit 0ee8b541d1
6 changed files with 134 additions and 6 deletions

View File

@ -1,10 +1,15 @@
from pythonbpf.decorators import tracepoint, syscalls
from ctypes import c_void_p, c_int32
#This is a test function
def test_function():
print("test_function called")
@tracepoint(syscalls.sys_enter_execve)
def trace_execve(ctx: c_void_p) -> c_int32:
print("execve called")
print("execve2 called")
test_function()
return c_int32(0)