Changeset 45991 in vbox
- Timestamp:
- May 11, 2013 11:36:34 PM (12 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r45980 r45991 34 34 35 35 #include <VBox/vmm/pdmdrv.h> 36 #if def DEBUG/* for VM_ASSERT_EMT(). */36 #if defined(DEBUG) || defined(VBOX_STRICT) /* for VM_ASSERT_EMT(). */ 37 37 # include <VBox/vmm/vm.h> 38 38 #endif -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r45907 r45991 53 53 DECLEXPORT(int) pgmPoolAccessHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser); 54 54 #endif 55 #if def LOG_ENABLED55 #if defined(LOG_ENABLED) || defined(VBOX_STRICT) 56 56 static const char *pgmPoolPoolKindToStr(uint8_t enmKind); 57 57 #endif … … 5444 5444 #endif /* IN_RING3 */ 5445 5445 5446 #if def LOG_ENABLED5446 #if defined(LOG_ENABLED) || defined(VBOX_STRICT) 5447 5447 /** 5448 5448 * Stringifies a PGMPOOLKIND value. … … 5515 5515 return "Unknown kind!"; 5516 5516 } 5517 #endif /* LOG_ENABLED */5518 5517 #endif /* LOG_ENABLED || VBOX_STRICT */ 5518
Note:
See TracChangeset
for help on using the changeset viewer.