Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android thread stime,utime?

What does this mean and what's the difference?

stime and utime in DDMS

like image 509
Harinder Avatar asked Jul 01 '11 06:07

Harinder


1 Answers

utime - cumulative time spent executing user code, in "jiffies" (usually 10ms). Only available under Linux. stime - cumulative time spent executing system code, in "jiffies" (usually 10ms).

Please more detail check link http://www.linuxtopia.org/online_books/android/devguide/guide/developing/tools/ddms.html

like image 156
Nikhil Avatar answered Sep 24 '22 04:09

Nikhil