diff options
| author | Simon Quigley <tsimonq2@ubuntu.com> | 2017-08-16 04:32:39 -0500 | 
|---|---|---|
| committer | Simon Quigley <tsimonq2@ubuntu.com> | 2017-08-16 04:32:39 -0500 | 
| commit | 9a9db98089717990cd5e0eef529f6bb0819ebe46 (patch) | |
| tree | a9afaabce984d5fe552fa8bf1a9405db9bdd2699 /includes/arm | |
| parent | 69a2124e9a081518297951256eb5c8d72d93361f (diff) | |
New upstream version 0.5.1+git20170815
Diffstat (limited to 'includes/arm')
| -rw-r--r-- | includes/arm/processor-platform.h | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/includes/arm/processor-platform.h b/includes/arm/processor-platform.h index 290b9a62..0ffdac24 100644 --- a/includes/arm/processor-platform.h +++ b/includes/arm/processor-platform.h @@ -19,15 +19,18 @@  #ifndef __PROCESSOR_PLATFORM_H__  #define __PROCESSOR_PLATFORM_H__ +#include "cpu_util.h" +  struct _Processor {      gchar *model_name; -    gchar *decoded_name; +    gchar *linux_name;      gchar *flags;      gfloat bogomips; -    gfloat cpu_mhz; /* for devices.c, identical to cpukhz_max/1000 */ -    gint cpukhz_max, cpukhz_min, cpukhz_cur; /* for arm/processor.c */      gint id; +    gfloat cpu_mhz; /* for devices.c, identical to cpukhz_max/1000 */ +    cpu_topology_data *cputopo; +    cpufreq_data *cpufreq;      gchar *cpu_implementer;      gchar *cpu_architecture; | 
