(no commit message)
[psensor.git] / src / server / sysinfo.c
1 /*
2     Copyright (C) 2010-2011 wpitchoune@gmail.com
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17     02110-1301 USA
18 */
19
20 #include <stdlib.h>
21 #include <glibtop/cpu.h>
22
23 #include "sysinfo.h"
24
25 static glibtop_cpu *cpu;
26 static float last_used;
27 static float last_total;
28
29
30 void sysinfo_update(float *cpu_rate)
31 {
32         unsigned long int used = 0;
33         unsigned long int dt;
34
35         if (!cpu)
36                 cpu = malloc(sizeof(glibtop_cpu));
37
38         glibtop_get_cpu(cpu);
39
40         used = cpu->user + cpu->nice + cpu->sys;
41
42         dt = cpu->total - last_total;
43
44         if (dt)
45                 *cpu_rate = (used - last_used) / dt;
46
47         last_used = used;
48         last_total = cpu->total;
49 }