diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcommon/llprocessor.h | 20 |
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 | ||
61 | typedef struct ProcessorExtensions | 61 | struct 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 | ||
102 | typedef struct ProcessorCache | 102 | struct 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 | ||
112 | typedef struct ProcessorL1Cache | 112 | struct ProcessorL1Cache |
113 | { | 113 | { |
114 | ProcessorCache Instruction; | 114 | ProcessorCache Instruction; |
115 | ProcessorCache Data; | 115 | ProcessorCache Data; |
116 | } ProcessorL1Cache; | 116 | }; |
117 | 117 | ||
118 | typedef struct ProcessorTLB | 118 | struct 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 | ||
127 | typedef struct ProcessorInfo | 127 | struct 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 |