Changeset 26150 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Feb 2, 2010 3:52:54 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57163
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r25958 r26150 38 38 #include <VBox/hwaccm.h> 39 39 #include <VBox/hwacc_vmx.h> 40 #include " PGMInternal.h"40 #include "../PGMInternal.h" 41 41 #include <VBox/vm.h> 42 #include "../PGMInline.h" 42 43 #include <iprt/assert.h> 43 44 #include <iprt/asm.h> … … 773 774 774 775 /* Ignore all irrelevant error codes. */ 775 if ( rc == VERR_PAGE_NOT_PRESENT 776 || rc == VERR_PAGE_TABLE_NOT_PRESENT 777 || rc == VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT 778 || rc == VERR_PAGE_MAP_LEVEL4_NOT_PRESENT) 776 if ( rc == VERR_PAGE_NOT_PRESENT 777 || rc == VERR_PAGE_TABLE_NOT_PRESENT 778 || rc == VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT 779 || rc == VERR_PAGE_MAP_LEVEL4_NOT_PRESENT) 779 780 rc = VINF_SUCCESS; 780 781 -
trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp
r25647 r26150 34 34 #include <VBox/dbgf.h> 35 35 #include <VBox/rem.h> 36 #include " PGMInternal.h"36 #include "../PGMInternal.h" 37 37 #include <VBox/vm.h> 38 #include "../PGMInline.h" 38 39 39 40 #include <VBox/log.h> -
trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
r25935 r26150 25 25 #define LOG_GROUP LOG_GROUP_PGM 26 26 #include <VBox/pgm.h> 27 #include " PGMInternal.h"27 #include "../PGMInternal.h" 28 28 #include <VBox/vm.h> 29 #include "../PGMInline.h" 30 #include <VBox/err.h> 31 #include <iprt/asm.h> 29 32 #include <iprt/assert.h> 30 #include <iprt/asm.h>31 #include <VBox/err.h>32 33 33 34 -
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r25586 r26150 30 30 #include <VBox/em.h> 31 31 #include <VBox/rem.h> 32 #include " PGMInternal.h"32 #include "../PGMInternal.h" 33 33 #include <VBox/vm.h> 34 #include "../PGMInline.h" 34 35 #include <VBox/param.h> 35 36 #include <VBox/err.h> -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r26066 r26150 32 32 # include <VBox/patm.h> 33 33 #endif 34 #include " PGMInternal.h"34 #include "../PGMInternal.h" 35 35 #include <VBox/vm.h> 36 #include "../PGMInline.h" 36 37 #include <VBox/disopcode.h> 37 38 #include <VBox/hwacc_vmx.h>
Note:
See TracChangeset
for help on using the changeset viewer.