logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

probe::syscall_any.return - Record exit from a syscall

Context

       The process performing the syscall

Description

       The syscall_any.return probe point is designed to be a low overhead that monitors all the syscalls
       returns via a kernel tracepoint. Because of the breadth of syscalls it monitors it provides no
       information about the syscall arguments, argstr string representation of those arguments, or a string
       interpretation of the return value (retval).

       This requires kernel 3.5+ and newer which have the kernel.trace(“sys_exit”) probe point.

Name

       probe::syscall_any.return - Record exit from a syscall

See Also

tapset::syscall_any(3stap)

SystemTap Tapset Reference                         April 2024                          PROBE::SYSCALL_ANY(3stap)

Synopsis

       syscall_any.return

Values

syscall_nr
           number of the syscall

       retval
           return value of the syscall

       name
           name of the syscall

See Also