How to control system calls for a process?
Tick strace
In the simplest case, strace runs the specified command before it exits. It intercepts and records system calls made by the process and the signals received by the process. The name of each system call, its arguments and its return value are printed by standard error or in the file specified in the -o option.Each line in the trace contains the name of the system call, and then its arguments in parentheses and its return value.
In the simplest case, strace runs the specified command before it exits. It intercepts and records system calls made by the process and the signals received by the process. The name of each system call, its arguments and its return value are printed by standard error or in the file specified in the -o option.
Each line in the trace contains the name of the system call, and then its arguments in parentheses and its return value.
Source: https://habr.com/ru/post/1286391/More articles:Comparing C char and int - cDoes mousemove check a good way to determine if assets should be loaded? - javascriptMocking Inner Classes with RhinoMocks - internalsvisibletoWhat namespace does JObject have in json.net? - json.netError 404: target servlet for uri not configured - websphereWhy is activeresource.rb just calling active_resource.rb? - ruby | fooobar.comMissed socket message - javaString to Integer Hashing Function with precision - c ++Stylistic Question: Using White Space - language-agnosticWhat is your experience using nginx and memcached to optimize your website? - javaAll Articles