So, it would be nice if it would have a detailed and human-readable information about system calls and their parameters by converting raw values into more understandable formats. strace translates the raw data into meaningful descriptions by interpreting the arguments and constants associated with them. You would need to have a predefined list of constants that map integer values to their symbolic names (e.g. RLIMIT_STACK). In this case the raw value 0x7FFFFFFFB750 is dereferenced to read the rlimit64 structure it points to, and it extracts the values of rlim_cur and rlim_max from the structure.
Hello. Any plans to include more detailed and human-readable output? For example:
strace:
lurk:
So, it would be nice if it would have a detailed and human-readable information about system calls and their parameters by converting raw values into more understandable formats.
strace
translates the raw data into meaningful descriptions by interpreting the arguments and constants associated with them. You would need to have a predefined list of constants that map integer values to their symbolic names (e.g.RLIMIT_STACK
). In this case the raw value0x7FFFFFFFB750
is dereferenced to read therlimit64
structure it points to, and it extracts the values ofrlim_cur
andrlim_max
from the structure.