Changeset 54718 in vbox for trunk/src/VBox
- Timestamp:
- Mar 11, 2015 4:14:41 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r54717 r54718 503 503 * Deregisters the thread-context hook for this VCPU. 504 504 * 505 * @returns VBox status code.506 505 * @param pVCpu Pointer to the VMCPU. 507 506 * 508 507 * @thread EMT(pVCpu) 509 508 */ 510 VMMR0DECL( int) VMMR0ThreadCtxHooksDeregister(PVMCPU pVCpu)509 VMMR0DECL(void) VMMR0ThreadCtxHooksDeregister(PVMCPU pVCpu) 511 510 { 512 511 /* Clear the VCPU <-> host CPU mapping as we've left HM context. See @bugref{7726} comment #19. */ … … 517 516 Assert(!RTThreadPreemptIsEnabled(NIL_RTTHREAD)); 518 517 int rc = RTThreadCtxHooksDeregister(pVCpu->vmm.s.hR0ThreadCtx); 519 AssertRCReturn(rc, rc); 520 } 521 return VINF_SUCCESS; 518 AssertRC(rc); 519 } 522 520 } 523 521
Note:
See TracChangeset
for help on using the changeset viewer.