Changeset 87580 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Feb 3, 2021 3:48:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCRemoteKd.cpp
r87577 r87580 238 238 /** Debug control. */ 239 239 uint64_t u64DbgCtrl; 240 /** @todo */240 /** @todo lbr */ 241 241 uint64_t u64LastBrToRip; 242 242 uint64_t u64LastBrFromRip; … … 309 309 /** Debug control. */ 310 310 uint64_t u64DbgCtrl; 311 /** @todo */311 /** @todo lbr */ 312 312 uint64_t u64LastBrToRip; 313 313 uint64_t u64LastBrFromRip; … … 1115 1115 /** Cause a bugcheck request. */ 1116 1116 #define KD_PACKET_MANIPULATE_REQ_SWITCH_PROCESSOR UINT32_C(0x00003150) 1117 /** @todo */1117 /** @todo 0x3151-0x3155 */ 1118 1118 /** Search memory for a pattern request. */ 1119 1119 #define KD_PACKET_MANIPULATE_REQ_SEARCH_MEMORY UINT32_C(0x00003156) 1120 /** @todo */1120 /** @todo 0x3157-0x3159 */ 1121 1121 /** Clear all internal breakpoints request. */ 1122 1122 #define KD_PACKET_MANIPULATE_REQ_CLEAR_ALL_INTERNAL_BKPT UINT32_C(0x0000315a) … … 1125 1125 /** Query memory properties. */ 1126 1126 #define KD_PACKET_MANIPULATE_REQ_QUERY_MEMORY UINT32_C(0x0000315c) 1127 /** @todo */1127 /** @todo 0x315d, 0x315e */ 1128 1128 /** Get context extended request. */ 1129 1129 #define KD_PACKET_MANIPULATE_REQ_GET_CONTEXT_EX UINT32_C(0x0000315f) 1130 /** @todo */1130 /** @todo 0x3160 */ 1131 1131 /** Maximum available request (exclusive). */ 1132 1132 #define KD_PACKET_MANIPULATE_REQ_MAX UINT32_C(0x00003161) … … 1834 1834 && fCtxFlags & NTCONTEXT_F_FLOATING_POINT) 1835 1835 { 1836 /** @todo . */1836 /** @todo NTCONTEXT_F_FLOATING_POINT. */ 1837 1837 } 1838 1838 … … 1840 1840 && fCtxFlags & NTCONTEXT_F_DEBUG) 1841 1841 { 1842 /** @todo */1842 /** @todo NTCONTEXT_F_DEBUG */ 1843 1843 } 1844 1844 … … 1915 1915 && fCtxFlags & NTCONTEXT_F_FLOATING_POINT) 1916 1916 { 1917 /** @todo . */1917 /** @todo NTCONTEXT_F_FLOATING_POINT. */ 1918 1918 } 1919 1919 … … 2018 2018 if (fCtxFlags & NTCONTEXT_F_FLOATING_POINT) 2019 2019 { 2020 /** @todo . */2020 /** @todo NTCONTEXT_F_FLOATING_POINT. */ 2021 2021 } 2022 2022 … … 4117 4117 rc = DBGFR3Halt(pThis->Dbgc.pUVM, VMCPUID_ALL); 4118 4118 } 4119 else /* Send a reset packet (@todo Figure out the semantics in this case exactly). */4119 else /* Send a reset packet */ /** @todo Figure out the semantics in this case exactly. */ 4120 4120 rc = dbgcKdCtxPktSendReset(pThis); 4121 4121
Note:
See TracChangeset
for help on using the changeset viewer.