Changeset 16476 in vbox
- Timestamp:
- Feb 2, 2009 9:07:50 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42362
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/SELM.cpp
r15750 r16476 1487 1487 #endif 1488 1488 /* The guest's TSS can span multiple pages now. We will monitor the whole thing. */ 1489 #ifndef DEBUG_michael 1489 1490 AssertMsg((GCPtrTss >> PAGE_SHIFT) == ((GCPtrTss + sizeof(VBOXTSS) - 1) >> PAGE_SHIFT), 1490 1491 ("GCPtrTss=%RGv cbTss=%#x - We assume everything is inside one page!\n", GCPtrTss, cbTss)); 1492 #endif 1491 1493 1492 1494 // All system GDTs are marked not present above. That explains why this check fails. … … 1771 1773 cbTss = sizeof(VBOXTSS); 1772 1774 # endif 1775 #ifndef DEBUG_michael 1773 1776 AssertMsg((GCPtrTss >> PAGE_SHIFT) == ((GCPtrTss + sizeof(VBOXTSS) - 1) >> PAGE_SHIFT), 1774 1777 ("GCPtrTss=%RGv cbTss=%#x - We assume everything is inside one page!\n", GCPtrTss, cbTss)); 1778 #endif 1775 1779 1776 1780 // All system GDTs are marked not present above. That explains why this check fails.
Note:
See TracChangeset
for help on using the changeset viewer.