Changeset 62650 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jul 28, 2016 10:05:44 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VMEmt.cpp
r62647 r62650 47 47 * Internal Functions * 48 48 *********************************************************************************************************************************/ 49 int vmR3EmulationThreadWithId(RTTHREAD ThreadSelf, PUVMCPU pUVCpu, VMCPUID idCpu);49 int vmR3EmulationThreadWithId(RTTHREAD hThreadSelf, PUVMCPU pUVCpu, VMCPUID idCpu); 50 50 51 51 … … 54 54 * 55 55 * @returns Thread exit code. 56 * @param ThreadSelfThe handle to the executing thread.56 * @param hThreadSelf The handle to the executing thread. 57 57 * @param pvArgs Pointer to the user mode per-VCpu structure (UVMPCU). 58 58 */ 59 DECLCALLBACK(int) vmR3EmulationThread(RTTHREAD ThreadSelf, void *pvArgs)59 DECLCALLBACK(int) vmR3EmulationThread(RTTHREAD hThreadSelf, void *pvArgs) 60 60 { 61 61 PUVMCPU pUVCpu = (PUVMCPU)pvArgs; 62 return vmR3EmulationThreadWithId( ThreadSelf, pUVCpu, pUVCpu->idCpu);62 return vmR3EmulationThreadWithId(hThreadSelf, pUVCpu, pUVCpu->idCpu); 63 63 } 64 64 … … 92 92 */ 93 93 rc = VINF_SUCCESS; 94 Log(("vmR3EmulationThread: Emulation thread starting the days work... Thread=%#x pUVM=%p\n", ThreadSelf, pUVM));94 Log(("vmR3EmulationThread: Emulation thread starting the days work... Thread=%#x pUVM=%p\n", hThreadSelf, pUVM)); 95 95 VMSTATE enmBefore = VMSTATE_CREATED; /* (only used for logging atm.) */ 96 96 for (;;) … … 248 248 */ 249 249 Log(("vmR3EmulationThread: Terminating emulation thread! Thread=%#x pUVM=%p rc=%Rrc enmBefore=%d enmVMState=%d\n", 250 ThreadSelf, pUVM, rc, enmBefore, pUVM->pVM ? pUVM->pVM->enmVMState : VMSTATE_TERMINATED));250 hThreadSelf, pUVM, rc, enmBefore, pUVM->pVM ? pUVM->pVM->enmVMState : VMSTATE_TERMINATED)); 251 251 if ( idCpu == 0 252 252 && pUVM->pVM)
Note:
See TracChangeset
for help on using the changeset viewer.