Changeset 49026 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Oct 10, 2013 12:01:59 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89788
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r49019 r49026 1669 1669 * @param pVCpu Pointer to the VMCPU. 1670 1670 * @param fGlobalInit Whether global VT-x/AMD-V init. is used. 1671 * @thread EMT(pVCpu) 1671 1672 */ 1672 1673 VMMR0DECL(void) SVMR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, PVMCPU pVCpu, bool fGlobalInit) -
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r49019 r49026 7160 7160 * @param pVCpu Pointer to the VMCPU. 7161 7161 * @param fGlobalInit Whether global VT-x/AMD-V init. was used. 7162 * @thread EMT.7162 * @thread EMT(pVCpu) 7163 7163 */ 7164 7164 VMMR0DECL(void) VMXR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, PVMCPU pVCpu, bool fGlobalInit) -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r48448 r49026 442 442 * 443 443 * @returns VBox status code. 444 *445 444 * @param pVCpu Pointer to the VMCPU. 446 * @thread EMT. 445 * 446 * @thread EMT(pVCpu) 447 447 */ 448 448 VMMR0DECL(int) VMMR0ThreadCtxHooksCreate(PVMCPU pVCpu) … … 483 483 * @param pfnThreadHook Pointer to the thread-context callback. 484 484 * 485 * @thread EMT.485 * @thread EMT(pVCpu) 486 486 */ 487 487 VMMR0DECL(int) VMMR0ThreadCtxHooksRegister(PVMCPU pVCpu, PFNRTTHREADCTXHOOK pfnThreadHook) … … 498 498 * @param pVCpu Pointer to the VMCPU. 499 499 * 500 * @thread EMT.500 * @thread EMT(pVCpu) 501 501 */ 502 502 VMMR0DECL(int) VMMR0ThreadCtxHooksDeregister(PVMCPU pVCpu) … … 512 512 * @returns true if the hooks are created, false otherwise. 513 513 * @param pVCpu Pointer to the VMCPU. 514 *515 * @remarks Can be called from any thread.516 514 */ 517 515 VMMR0DECL(bool) VMMR0ThreadCtxHooksAreCreated(PVMCPU pVCpu) … … 541 539 * @param enmEvent The thread-context event. 542 540 * @param pvUser Opaque pointer to the VMCPU. 541 * 542 * @thread EMT(pvUser) 543 543 */ 544 544 static DECLCALLBACK(void) vmmR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, void *pvUser) … … 1595 1595 * @returns @c true / @c false 1596 1596 * @param pVCpu Pointer to the VMCPU. 1597 * @thread EMT1597 * @thread EMT 1598 1598 */ 1599 1599 VMMR0_INT_DECL(bool) VMMR0IsInRing3LongJump(PVMCPU pVCpu)
Note:
See TracChangeset
for help on using the changeset viewer.