|
Tizen Native API
10.0
|
process_cpu_usage_s Struct Reference
Public Attributes | |
| int | utime |
| int | stime |
Detailed Description
Structure for CPU usage per process.
- Since :
- 2.4
This structure provides CPU usage information for specific processes. The information is collected from /proc/[pid]/stat file. All values are reported in clock ticks.
CPU usage metrics:
utime:Amount of time that this process has been scheduled in user mode, collected from /proc/[pid]/stat field 14 (user mode time in clock ticks)stime:Amount of time that this process has been scheduled in kernel mode, collected from /proc/[pid]/stat field 15 (kernel mode time in clock ticks)
Member Data Documentation
Amount of time that this process has been scheduled in kernel mode (clock ticks)
Amount of time that this process has been scheduled in user mode (clock ticks)