Changeset 86155 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Sep 17, 2020 2:37:42 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCRemoteKd.cpp
r86148 r86155 2103 2103 RespHdr.u32NtStatus = NTSTATUS_SUCCESS; 2104 2104 2105 /** @todo What do these flags mean? Can't be the context state to set because the valid one is 2106 * in NTCONTEXT64::fContext (observed with WinDbg). */ 2105 2107 SetContext.u32CtxFlags = pPktManip->u.SetContext.u32CtxFlags; 2106 2108 … … 2110 2112 aRespSegs[1].cbSeg = sizeof(SetContext); 2111 2113 2112 int rc = dbgcKdCtxSetNtCtx64(pThis, pPktManip->Hdr.idCpu, pNtCtx, SetContext.u32CtxFlags);2114 int rc = dbgcKdCtxSetNtCtx64(pThis, pPktManip->Hdr.idCpu, pNtCtx, pNtCtx->fContext); 2113 2115 if (RT_FAILURE(rc)) 2114 2116 RespHdr.u32NtStatus = NTSTATUS_UNSUCCESSFUL; /** @todo Convert to an appropriate NT status code. */
Note:
See TracChangeset
for help on using the changeset viewer.