We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f03c087 commit e0251a0Copy full SHA for e0251a0
1 file changed
docs/getting-started/quickstart.md
@@ -18,7 +18,7 @@ from ctypes import c_void_p, c_int64
18
@section("tracepoint/syscalls/sys_enter_execve")
19
def hello_world(ctx: c_void_p) -> c_int64:
20
print("Hello, World!")
21
- return c_int64(0)
+ return 0
22
23
@bpf
24
@bpfglobal
@@ -172,7 +172,7 @@ Kprobes allow you to attach to any kernel function:
172
@section("kprobe/do_sys_open")
173
def trace_open(ctx: c_void_p) -> c_int64:
174
print("File is being opened")
175
176
```
177
178
### XDP (eXpress Data Path)
0 commit comments