VirtualBox

Changeset 62650 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Jul 28, 2016 10:05:44 PM (8 years ago)
Author:
vboxsync
Message:

VMMR3: warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/VMEmt.cpp

    r62647 r62650  
    4747*   Internal Functions                                                                                                           *
    4848*********************************************************************************************************************************/
    49 int vmR3EmulationThreadWithId(RTTHREAD ThreadSelf, PUVMCPU pUVCpu, VMCPUID idCpu);
     49int vmR3EmulationThreadWithId(RTTHREAD hThreadSelf, PUVMCPU pUVCpu, VMCPUID idCpu);
    5050
    5151
     
    5454 *
    5555 * @returns Thread exit code.
    56  * @param   ThreadSelf The handle to the executing thread.
     56 * @param   hThreadSelf The handle to the executing thread.
    5757 * @param   pvArgs      Pointer to the user mode per-VCpu structure (UVMPCU).
    5858 */
    59 DECLCALLBACK(int) vmR3EmulationThread(RTTHREAD ThreadSelf, void *pvArgs)
     59DECLCALLBACK(int) vmR3EmulationThread(RTTHREAD hThreadSelf, void *pvArgs)
    6060{
    6161    PUVMCPU pUVCpu = (PUVMCPU)pvArgs;
    62     return vmR3EmulationThreadWithId(ThreadSelf, pUVCpu, pUVCpu->idCpu);
     62    return vmR3EmulationThreadWithId(hThreadSelf, pUVCpu, pUVCpu->idCpu);
    6363}
    6464
     
    9292     */
    9393    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));
    9595    VMSTATE enmBefore = VMSTATE_CREATED; /* (only used for logging atm.) */
    9696    for (;;)
     
    248248     */
    249249    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));
    251251    if (   idCpu == 0
    252252        && pUVM->pVM)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette