VirtualBox

Changeset 13972 in vbox for trunk


Ignore:
Timestamp:
Nov 7, 2008 4:17:59 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
39009
Message:

Fixes for the debugger.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm.h

    r13898 r13972  
    113113VMCPUID             VMMGetCpuId(PVM pVM);
    114114PVMCPU              VMMGetCpu(PVM pVM);
     115VMMDECL(PVMCPU)     VMMGetCpuEx(PVM pVM, RTCPUID idCpu);
    115116VMMDECL(uint32_t)   VMMGetSvnRev(void);
    116117
  • trunk/src/VBox/VMM/VMMAll/VMMAll.cpp

    r13898 r13972  
    9797
    9898/**
     99 * Returns the VMCPU of the specified virtual CPU.
     100 *
     101 * @returns The VMCPU pointer.
     102 * @param   pVM         The VM to operate on.
     103 */
     104VMMDECL(PVMCPU) VMMGetCpuEx(PVM pVM, RTCPUID idCpu)
     105{
     106    AssertReturn(idCpu < pVM->cCPUs, NULL);
     107    return &pVM->aCpus[idCpu];
     108}
     109
     110/**
    99111 * Gets the VBOX_SVN_REV.
    100112 *
Note: See TracChangeset for help on using the changeset viewer.

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