And here attached is a simple script to get a plot of data from one of the log files generated from the doprofile program.
Run it as "gnuplot plotgoto.gp" in the same directory where you ran "doprofile < eprofile.pid", and it will generate a "goto.ps" file.
set terminal postscript landscape monochrome set output "goto.ps" plot "goto.csv" using 1:2:2 w boxes lt -1, "goto.csv" using 1:($3+$5+$4):2 w boxes lt -2, "goto.csv" using 1:($3+$4):2 w boxes lt -1, "goto.csv" using 1:3:2 w boxes lt 1
