~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to NuxCore/CPU.h

  • Committer: Jay Taoko
  • Date: 2011-10-21 23:49:15 UTC
  • mfrom: (508.1.2 nux-20)
  • Revision ID: jay.taoko@canonical.com-20111021234915-hnzakb5ndebica8i
* Removed custom Nux types: t_u32, t_s32, t_bool, ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
 
62
62
    struct CPUInfo
63
63
    {
64
 
      t_u32 m_CPUType;
 
64
      unsigned int m_CPUType;
65
65
      t_char m_CPUModel;
66
66
      t_char m_CPUExtModel;
67
 
      t_u32 m_CPUFamily;
68
 
      t_u32 m_CPUExtFamily;
 
67
      unsigned int m_CPUFamily;
 
68
      unsigned int m_CPUExtFamily;
69
69
      t_char m_CPUSteppingID;
70
 
      t_u32 m_CPUNumLogicalProcessors;
71
 
      t_u32 m_CPUSpeed;
 
70
      unsigned int m_CPUNumLogicalProcessors;
 
71
      unsigned int m_CPUSpeed;
72
72
    };
73
73
    struct CPUInfo m_CPUInfo;
74
74
 
94
94
 
95
95
    struct MemInfo
96
96
    {
97
 
      t_u32 m_PhysicalMemorySize;
 
97
      unsigned int m_PhysicalMemorySize;
98
98
    };
99
99
    struct MemInfo m_MemInfo;
100
100
 
101
101
    struct OSInfo
102
102
    {
103
 
      t_u32 m_OSType;
 
103
      unsigned int m_OSType;
104
104
    };
105
105
 
106
106
    struct OSInfo m_OSInfo;