diff options
author | Burt P <pburt0@gmail.com> | 2017-07-10 12:07:04 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-12 19:38:41 -0700 |
commit | 64c146ae272c2f64042897da4b857a82cc57df12 (patch) | |
tree | 764149429a47a3b997058f4d09a4360286db3ce7 /includes/ia64 | |
parent | 32c1d8d1a45914b52605b1f19b341b1dd2ef41dd (diff) |
ia64: multiple procs, topology, cpufreq, more cpuinfo fields
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'includes/ia64')
-rw-r--r-- | includes/ia64/processor-platform.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/includes/ia64/processor-platform.h b/includes/ia64/processor-platform.h index ad44a1f1..5d525639 100644 --- a/includes/ia64/processor-platform.h +++ b/includes/ia64/processor-platform.h @@ -19,14 +19,22 @@ #ifndef __PROCESSOR_PLATFORM_H__ #define __PROCESSOR_PLATFORM_H__ +#include "cpu_util.h" + struct _Processor { + gint id; + gfloat cpu_mhz; /* for devices.c, identical to cpukhz_max/1000 */ + cpu_topology_data *cputopo; + cpufreq_data *cpufreq; + gchar *model_name; gchar *vendor_id; - gfloat bogomips, cpu_mhz; + gfloat bogomips; gchar *strmodel; - gchar *family, *arch; + gchar *family, *arch, *archrev, *features; gint model, revision; + gint cpu_regs; }; #endif /* __PROCESSOR_PLATFORM_H__ */ |