Add some support for strings in structs

This commit is contained in:
Pragyansh Chaturvedi
2025-09-26 18:26:07 +05:30
parent 4ebf0480dd
commit 0f365be65e
3 changed files with 54 additions and 1 deletions

View File

@ -28,6 +28,7 @@ def hello(ctx: c_void_p) -> c_int32:
strobj = "hellohellohello"
dataobj.pid = process_id
dataobj.ts = ts
# dataobj.comm = strobj
print(f"clone called at {ts} by pid {process_id}, comm {strobj}")
events.output(dataobj)
return c_int32(0)