ftrace
ftrace is a small utility that uses the frysk engine to trace systemcalls in a similar manner to strace.
ftrace
funit(8) fstack(1)
The option parser is greedy when looking for options so running ftrace on a program that uses options can be a problem, use -- to split between ftrace and the program. So change from:
~/prefix/bin/ftrace ~/prefix/lib64/frysk/funit --arch 32 frysk.proc.TestAbandon
to
~/prefix/bin/ftrace -- ~/prefix/lib64/frysk/funit --arch 32 frysk.proc.TestAbandon
Report bugs to [1]
.
REFERENCES