androidcpu-usageandroid-traceview

What is the meaning of Incl CPU Time, Excl CPU Time, Incl Real CPU Time, Excl Real CPU Time in traceview?


1) Exclusive time is the time spent in the method 2) Inclusive time is the time spent in the method plus the time spent in any called functions 3) We refer to calling methods as "parents" and called methods as "children." Reference Link : Click here

Question here is :

what are difference between

in my one example trace file for Method1() : Incl CPU Time = 242 msec & Incl Real CPU Time = 5012 msec

Please help me if you have any idea.


Solution

  • cpu time is the time for which the process uses the cpu and cpu real time is the total time from the starting of process to end of process it includes waiting time of process to execute.