Add string as a primitve to struct defs

This commit is contained in:
Pragyansh Chaturvedi
2025-09-26 04:44:38 +05:30
parent 737c4d3039
commit b9ddecd6b1
2 changed files with 13 additions and 1 deletions

View File

@ -10,6 +10,7 @@ from ctypes import c_void_p, c_int64, c_int32, c_uint64
class data_t:
pid: c_uint64
ts: c_uint64
comm: str(16)
@bpf