How to get the CPU Usage in C?

2020-04-05 08:03发布

I want to get the overall total CPU usage for an application in C, the total CPU usage like we get in the TaskManager... I want to know ... for windows and linux :: current Total CPU utilization by all processes ..... as we see in the task manager.

标签: c cpu
4条回答
smile是对你的礼貌
2楼-- · 2020-04-05 08:08

Under POSIX, you want getrusage(2)'s ru_utime field. Use RUSAGE_SELF for just the calling process, and RUSAGE_CHILDEN for all terminated and wait(2)ed-upon children. Linux also supports RUSAGE_THREAD for just the calling thread. Use ru_stime if you want the system time, which can be summed with ru_utime for total time actively running (not wall time).

查看更多
你好瞎i
3楼-- · 2020-04-05 08:19

It is usually operating system specific.

You could use the clock function, returning a clock_t (some integer type, like perhaps long). On Linux systems it measures the CPU time in microseconds.

查看更多
狗以群分
4楼-- · 2020-04-05 08:22

that is the exact thing I was looking for. Manipulating it in my way, I run it successfully.

Get total CPU usage

查看更多
forever°为你锁心
5楼-- · 2020-04-05 08:33

This is platform-specific:

  • In Windows, you can use the GetProcessTimes() function.
  • In Linux, you can actually just use clock().

These can be used to measure the amount of CPU time taken between two time intervals.

EDIT :

To get the CPU consumption (as a percentage), you will need to divide the total CPU time by the # of logical cores that the OS sees, and then divided by the total wall-clock time:

% CPU usage = (CPU time) / (# of cores) / (wall time)

Getting the # of logical cores is also platform-specific:

查看更多
登录 后发表回答