-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpu_dev.h
54 lines (41 loc) · 1.65 KB
/
cpu_dev.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*************************************************************************************************************
This file is part of HWMonitor.
HWMonitor is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
HWMonitor is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with HWMonitor. If not, see <http://www.gnu.org/licenses/>.
*************************************************************************************************************/
#pragma once
#include "globals.h"
#include "string.h"
//============================================================================================================
// CPU DEVICE
//============================================================================================================
typedef struct cpu_dev {
u64 user;
u64 nice;
u64 system;
u64 idle;
u64 iowait;
u64 irc;
u64 softirc;
u64 steal;
u64 guest;
u64 guest_nice;
} cpu_dev_t;
void cpu_dev_release_cb(void* p);
void cpu_dev_get(cpu_dev_t** cpu_dev);
double cpu_dev_diff_usage(cpu_dev_t* a, cpu_dev_t* b);
typedef struct cpu_info {
string* name;
string* clock;
u64 cores;
} cpu_info_t;
void cpu_info_release_cb(void* p);
void cpu_info_get(cpu_info_t** cpu_info);