Changeset 3723 in vbox for trunk/src/VBox/VMM/PATM
- Timestamp:
- Jul 19, 2007 6:46:00 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23022
- Location:
- trunk/src/VBox/VMM/PATM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/CSAMInternal.h
r3025 r3723 20 20 */ 21 21 22 #ifndef __ CSAMInternal_h__23 #define __ CSAMInternal_h__22 #ifndef ___CSAMInternal_h 23 #define ___CSAMInternal_h 24 24 25 25 #include <VBox/cdefs.h> -
trunk/src/VBox/VMM/PATM/PATMA.h
r2981 r3723 20 20 */ 21 21 22 #ifndef __ PATMA_H__23 #define __ PATMA_H__22 #ifndef ___PATMA_H 23 #define ___PATMA_H 24 24 25 25 … … 137 137 138 138 139 #ifdef __cplusplus 140 extern "C" 141 { 142 #endif 139 __BEGIN_DECLS 143 140 144 141 extern PATCHASMRECORD PATMCliRecord; … … 187 184 188 185 extern uint32_t PATMInterruptFlag; 189 #ifdef __cplusplus 190 } 186 187 __END_DECLS 188 191 189 #endif 192 193 #endif //__PATMA_H__ -
trunk/src/VBox/VMM/PATM/PATMInternal.h
r3020 r3723 20 20 */ 21 21 22 #ifndef __ PATMInternal_h__23 #define __ PATMInternal_h__22 #ifndef ___PATMInternal_h 23 #define ___PATMInternal_h 24 24 25 25 #include <VBox/cdefs.h> … … 241 241 #if HC_ARCH_BITS == 64 242 242 uint32_t Alignment0; /**< Align flags correctly. */ 243 #endif 243 #endif 244 244 245 245 uint64_t flags; … … 268 268 #if HC_ARCH_BITS == 64 269 269 uint32_t Alignment1; 270 #endif 270 #endif 271 271 272 272 // Cache record for PATMGCVirtToHCVirt … … 441 441 #if HC_ARCH_BITS == 64 442 442 uint32_t Alignment0; /**< Align the structure size on a 8-byte boundrary. */ 443 #endif 443 #endif 444 444 } savedstate; 445 445 -
trunk/src/VBox/VMM/PATM/PATMPatch.h
r3020 r3723 19 19 * license agreement apply instead of the previous paragraph. 20 20 */ 21 #ifndef __ PATMPATCH_H__22 #define __ PATMPATCH_H__21 #ifndef ___PATMPATCH_H 22 #define ___PATMPATCH_H 23 23 24 24 int patmPatchAddReloc32(PVM pVM, PPATCHINFO pPatch, uint8_t *pRelocHC, uint32_t uType, RTGCPTR pSource = 0, RTGCPTR pDest = 0); … … 154 154 int patmPatchGenGlobalFunctions(PVM pVM, PPATCHINFO pPatch); 155 155 156 #endif //__PATMPATCH_H__156 #endif
Note:
See TracChangeset
for help on using the changeset viewer.