aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llprocessor.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/linden/indra/llcommon/llprocessor.h b/linden/indra/llcommon/llprocessor.h
index 6abbd96..06dc72a 100644
--- a/linden/indra/llcommon/llprocessor.h
+++ b/linden/indra/llcommon/llprocessor.h
@@ -58,7 +58,7 @@
58#endif 58#endif
59 59
60 60
61typedef struct ProcessorExtensions 61struct ProcessorExtensions
62{ 62{
63 bool FPU_FloatingPointUnit; 63 bool FPU_FloatingPointUnit;
64 bool VME_Virtual8086ModeEnhancements; 64 bool VME_Virtual8086ModeEnhancements;
@@ -97,9 +97,9 @@ typedef struct ProcessorExtensions
97 bool _3DNOW_InstructionExtensions; 97 bool _3DNOW_InstructionExtensions;
98 bool _E3DNOW_InstructionExtensions; 98 bool _E3DNOW_InstructionExtensions;
99 bool AA64_AMD64BitArchitecture; 99 bool AA64_AMD64BitArchitecture;
100} ProcessorExtensions; 100};
101 101
102typedef struct ProcessorCache 102struct ProcessorCache
103{ 103{
104 bool bPresent; 104 bool bPresent;
105 char strSize[32]; /* Flawfinder: ignore */ 105 char strSize[32]; /* Flawfinder: ignore */
@@ -107,24 +107,24 @@ typedef struct ProcessorCache
107 unsigned int uiLineSize; 107 unsigned int uiLineSize;
108 bool bSectored; 108 bool bSectored;
109 char strCache[128]; /* Flawfinder: ignore */ 109 char strCache[128]; /* Flawfinder: ignore */
110} ProcessorCache; 110};
111 111
112typedef struct ProcessorL1Cache 112struct ProcessorL1Cache
113{ 113{
114 ProcessorCache Instruction; 114 ProcessorCache Instruction;
115 ProcessorCache Data; 115 ProcessorCache Data;
116} ProcessorL1Cache; 116};
117 117
118typedef struct ProcessorTLB 118struct ProcessorTLB
119{ 119{
120 bool bPresent; 120 bool bPresent;
121 char strPageSize[32]; /* Flawfinder: ignore */ 121 char strPageSize[32]; /* Flawfinder: ignore */
122 unsigned int uiAssociativeWays; 122 unsigned int uiAssociativeWays;
123 unsigned int uiEntries; 123 unsigned int uiEntries;
124 char strTLB[128]; /* Flawfinder: ignore */ 124 char strTLB[128]; /* Flawfinder: ignore */
125} ProcessorTLB; 125};
126 126
127typedef struct ProcessorInfo 127struct ProcessorInfo
128{ 128{
129 char strVendor[16]; /* Flawfinder: ignore */ 129 char strVendor[16]; /* Flawfinder: ignore */
130 unsigned int uiFamily; 130 unsigned int uiFamily;
@@ -148,7 +148,7 @@ typedef struct ProcessorInfo
148 ProcessorCache _Trace; 148 ProcessorCache _Trace;
149 ProcessorTLB _Instruction; 149 ProcessorTLB _Instruction;
150 ProcessorTLB _Data; 150 ProcessorTLB _Data;
151} ProcessorInfo; 151};
152 152
153 153
154// CProcessor 154// CProcessor