P = list_to_pid("<0.375.0>").
fprof:trace([start, {procs, P}]).
让fprof开始跟踪
运行需要跟踪的对象
fprof:trace(stop)
停止跟踪
fprof:profile().
处理跟踪过程
fprof:analyse({dest, "profile.txt"})
分析性能数据
P = list_to_pid("<0.375.0>").
fprof:trace([start, {procs, P}]).
让fprof开始跟踪
运行需要跟踪的对象
fprof:trace(stop)
停止跟踪
fprof:profile().
处理跟踪过程
fprof:analyse({dest, "profile.txt"})
分析性能数据