easy step to step for nubs like me :)
read the first line of /proc/stat to get total_cpu_usage1
sscanf(line,"%*s %llu %llu %llu %llu",&user,&nice,&system,&idle);
total_cpu_usage1 = user + nice + system + idle;
read /proc/pid/stat where pid is the pid of the process you want to know the cpu usage, like this:
sscanf(line,
"%*d %*s %*c %*d" //pid,command,state,ppid
"%*d %*d %*d %*d %*u %*lu %*lu %*lu %*lu"
"%lu %lu" //usertime,systemtime
"%*ld %*ld %*ld %*ld %*ld %*ld %*llu"
"%*lu", //virtual memory size in bytes
....)
now sum usertime and system time and get proc_times1
now wait 1 second or more
do it again, and get total_cpu_usage2 and proc_times2
the formula is:
(number of processors) * (proc_times2 - proc_times1) * 100 / (float) (total_cpu_usage2 - total_cpu_usage1)
you can get the num of cpus from /proc/cpuinfo