You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many needs to add more options to switch off some of options.
Here are the list of --no- prefixed options.
$ uftrace --help | grep "\-\-no\-"
--no-comment Don't show comments of returned functions
--no-event Disable (default) events
--no-libcall Don't trace library function calls
--no-merge Don't merge leaf functions
--no-pager Do not use pager
--no-pltbind Do not bind dynamic symbols (LD_BIND_NOT)
--no-randomize-addr Disable ASLR (Address Space Layout Randomization)
We could provide a new option to embrace all those with --no-opt=OPT[,OPT,...] and it can be used as follows.
There are many needs to add more options to switch off some of options.
Here are the list of
--no-
prefixed options.We could provide a new option to embrace all those with
--no-opt=OPT[,OPT,...]
and it can be used as follows.It's the same as following options:
Taking advantage of general purpose
--no-opt
, we can better add more switches without worrying about increasing the number of options.The possible candidates are as follows:
--no-opt=args
to hide arguments/return values (uftrace: Add --no-args option to hide args/retval #595)--no-opt=sched
to turn off scheduling event (schedule event needs to be fixed #739)--no-opt=OPT
could be renamed to any other such as--no=OPT
or--turn-off=OPT
or we can also reuse--disable
to--disable=OPT
.The text was updated successfully, but these errors were encountered: