Changeset 9934 in vbox
- Timestamp:
- Jun 25, 2008 3:43:57 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r9933 r9934 1672 1672 1673 1673 1674 static int dbgcCmdDumpDTWorker64(PDBGCCMDHLP pCmdHlp, PCX86DESC64 pDesc, unsigned iEntry, bool fHyper, bool * fDblEntry)1674 static int dbgcCmdDumpDTWorker64(PDBGCCMDHLP pCmdHlp, PCX86DESC64 pDesc, unsigned iEntry, bool fHyper, bool *pfDblEntry) 1675 1675 { 1676 1676 /* GUEST64 */ … … 1773 1773 pDesc->Gen.u1Available, pDesc->Gen.u1Long | (pDesc->Gen.u1DefBig << 1), 1774 1774 pszHyper); 1775 if (fDblEntry) *fDblEntry = true; 1775 if (pfDblEntry) 1776 *pfDblEntry = true; 1776 1777 break; 1777 1778 } … … 1788 1789 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off, 1789 1790 pDesc->Gen.u2Dpl, pszPresent, pszCountOf, cParams, pszHyper); 1790 if (fDblEntry) *fDblEntry = true; 1791 if (pfDblEntry) 1792 *pfDblEntry = true; 1791 1793 break; 1792 1794 } … … 1802 1804 iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off, 1803 1805 pDesc->Gen.u2Dpl, pszPresent, pszHyper); 1804 if (fDblEntry) *fDblEntry = true; 1806 if (pfDblEntry) 1807 *pfDblEntry = true; 1805 1808 break; 1806 1809 }
Note:
See TracChangeset
for help on using the changeset viewer.