Arc Forumnew | comments | leaders | submitlogin
1 point by aw 5149 days ago | link | parent

Very nice!

Is "total time" the elapsed time (including time that a function is waiting for locks, I/O, etc.), or CPU time?



1 point by conanite 5149 days ago | link

Glad you like it :)

I haven't figured out how to measure CPU time in java; the profiler just calls System.nanoTime() at entry and exit of each function invocation and notes the difference.

-----