diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-03 11:28:30 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-03 11:28:30 +0000 |
commit | f89d3c299263e08975255614285f5160eef3a9a4 (patch) | |
tree | 156fa1eff2ab7d7dcd70079ae9c41897981dfb3d /hardinfo2/arch/linux/x86/processor.h | |
parent | 5adc8bdbb1471821f912becbba86e4631a4a001a (diff) |
Other platform fixes.
Diffstat (limited to 'hardinfo2/arch/linux/x86/processor.h')
-rw-r--r-- | hardinfo2/arch/linux/x86/processor.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hardinfo2/arch/linux/x86/processor.h b/hardinfo2/arch/linux/x86/processor.h index a756a958..e9985d2c 100644 --- a/hardinfo2/arch/linux/x86/processor.h +++ b/hardinfo2/arch/linux/x86/processor.h @@ -16,6 +16,22 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +struct _Processor { + gchar *model_name; + gchar *vendor_id; + gchar *flags; + gint cache_size; + gfloat bogomips, cpu_mhz; + + gchar *has_fpu; + gchar *bug_fdiv, *bug_hlt, *bug_f00f, *bug_coma; + + gint model, family, stepping; + gchar *strmodel; + + gint id; +}; + /* * This function is partly based on x86cpucaps * by Osamu Kayasono <jacobi@jcom.home.ne.jp> |