VirtualBox

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


Ignore:
Timestamp:
Jun 17, 2012 5:20:33 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78621
Message:

Doxygen.

Location:
trunk/src/VBox/VMM/VMMR3
Files:
14 edited

Legend:

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

    r41802 r41803  
    10611061 * Used by CPUMR3Reset and CPU hot plugging.
    10621062 *
    1063  * @param   pVCpu               The virtual CPU handle.
     1063 * @param   pVCpu               Pointer to the VMCPU.
    10641064 */
    10651065VMMR3DECL(void) CPUMR3ResetCpu(PVMCPU pVCpu)
     
    36053605 *
    36063606 * @returns VBox status code.
    3607  * @param   pVM         Pointer to the VM
    3608  * @param   pVCpu       VMCPU Handle
    3609  * @param   pCtx        CPU context
     3607 * @param   pVM         Pointer to the VM.
     3608 * @param   pVCpu       Pointer to the VMCPU.
     3609 * @param   pCtx        Pointer to the guest CPU context.
    36103610 * @param   GCPtrPC     Program counter (relative to CS) to disassemble from.
    3611  * @param   pCpu        Disassembly state
    3612  * @param   pszPrefix   String prefix for logging (debug only)
     3611 * @param   pCpu        Disassembly state.
     3612 * @param   pszPrefix   String prefix for logging (debug only).
    36133613 *
    36143614 */
     
    40004000 * Leaves REM and works the CPUM_CHANGED_HIDDEN_SEL_REGS_INVALID flag.
    40014001 *
    4002  * @param   pVCpu               The virtual CPU handle.
     4002 * @param   pVCpu               Pointer to the VMCPU.
    40034003 * @param   fNoOutOfSyncSels    This is @c false if there are out of sync
    40044004 *                              registers.
  • trunk/src/VBox/VMM/VMMR3/CPUMDbg.cpp

    r41801 r41803  
    171171 *
    172172 * @returns true if it is, false if it's in FNSAVE.
    173  * @param   pVCpu               The virtual CPU handle.
     173 * @param   pVCpu               Pointer to the VMCPU.
    174174 */
    175175DECLINLINE(bool) cpumR3RegIsFxSaveFormat(PVMCPU pVCpu)
  • trunk/src/VBox/VMM/VMMR3/DBGFAddr.cpp

    r41783 r41803  
    215215 *
    216216 * @returns VBox status code.
    217  * @param   pVCpu           The virtual CPU handle.
     217 * @param   pVCpu           Pointer to the VMCPU.
    218218 * @param   pAddress        The address.
    219219 * @param   pGCPhys         Where to return the physical address.
  • trunk/src/VBox/VMM/VMMR3/DBGFDisas.cpp

    r41802 r41803  
    9090 *
    9191 * @returns VBox status code.
    92  * @param   pVM         Pointer to the VM
    93  * @param   pVCpu       VMCPU handle
     92 * @param   pVM         Pointer to the VM.
     93 * @param   pVCpu       Pointer to the VMCPU.
    9494 * @param   pSelInfo    The selector info.
    9595 * @param   enmMode     The guest paging mode.
     
    323323 * @returns VBox status code.
    324324 * @param       pVM             Pointer to the VM.
    325  * @param       pVCpu           The virtual CPU handle.
     325 * @param       pVCpu           Pointer to the VMCPU.
    326326 * @param       Sel             The code selector. This used to determine the 32/16 bit ness and
    327327 *                              calculation of the actual instruction address.
     
    653653 * @returns VBox status code.
    654654 * @param   pVM             Pointer to the VM.
    655  * @param   pVCpu           The virtual CPU handle, defaults to CPU 0 if NULL.
     655 * @param   pVCpu           Pointer to the VMCPU, defaults to CPU 0 if NULL.
    656656 * @param   Sel             The code selector. This used to determine the 32/16 bit-ness and
    657657 *                          calculation of the actual instruction address.
  • trunk/src/VBox/VMM/VMMR3/DBGFReg.cpp

    r41783 r41803  
    498498 * @returns VBox status code.
    499499 * @param   pVM             Pointer to the VM.
    500  * @param   pVCpu           The virtual CPU handle.
     500 * @param   pVCpu           Pointer to the VMCPU.
    501501 * @param   paRegisters     The register descriptors.
    502502 * @param   fGuestRegs      Set if it's the guest registers, clear if
  • trunk/src/VBox/VMM/VMMR3/PDM.cpp

    r41801 r41803  
    14031403 * Used by PDMR3Reset and CPU hot plugging.
    14041404 *
    1405  * @param   pVCpu               The virtual CPU handle.
     1405 * @param   pVCpu               Pointer to the VMCPU.
    14061406 */
    14071407VMMR3DECL(void) PDMR3ResetCpu(PVMCPU pVCpu)
  • trunk/src/VBox/VMM/VMMR3/PGM.cpp

    r41801 r41803  
    24692469 *
    24702470 * @param   pVM                 Pointer to the VM.
    2471  * @param   pVCpu               The virtual CPU handle.
     2471 * @param   pVCpu               Pointer to the VMCPU.
    24722472 */
    24732473VMMR3DECL(void) PGMR3ResetUnpluggedCpu(PVM pVM, PVMCPU pVCpu)
  • trunk/src/VBox/VMM/VMMR3/PGMSharedPage.cpp

    r41800 r41803  
    197197 * @returns VBox strict status code.
    198198 * @param   pVM                 Pointer to the VM.
    199  * @param   pVCpu               The VMCPU handle for the calling EMT.
     199 * @param   pVCpu               Pointer to the VMCPU of the calling EMT.
    200200 * @param   pvUser              Pointer to a VMCPUID with the requester's ID.
    201201 */
  • trunk/src/VBox/VMM/VMMR3/SELM.cpp

    r41802 r41803  
    23002300 *
    23012301 * @param   pVM         Pointer to the VM.
    2302  * @param   pVCpu       The virtual CPU handle.
     2302 * @param   pVCpu       Pointer to the VMCPU.
    23032303 * @param   Sel         The selector to get info about.
    23042304 * @param   pSelInfo    Where to store the information.
  • trunk/src/VBox/VMM/VMMR3/TM.cpp

    r41801 r41803  
    26102610 * @returns VBox status code, all errors are asserted.
    26112611 * @param   pVM         Pointer to the VM.
    2612  * @param   pVCpu       The virtual CPU handle.
    2613  * @thread  EMT corresponding to the virtual CPU handle.
     2612 * @param   pVCpu       Pointer to the VMCPU.
     2613 * @thread  EMT corresponding to Pointer to the VMCPU.
    26142614 */
    26152615VMMR3DECL(int) TMR3NotifySuspend(PVM pVM, PVMCPU pVCpu)
     
    26532653 * @returns VBox status code, all errors are asserted.
    26542654 * @param   pVM         Pointer to the VM.
    2655  * @param   pVCpu       The virtual CPU handle.
    2656  * @thread  EMT corresponding to the virtual CPU handle.
     2655 * @param   pVCpu       Pointer to the VMCPU.
     2656 * @thread  EMT corresponding to Pointer to the VMCPU.
    26572657 */
    26582658VMMR3DECL(int) TMR3NotifyResume(PVM pVM, PVMCPU pVCpu)
  • trunk/src/VBox/VMM/VMMR3/TRPM.cpp

    r41802 r41803  
    730730 * Used by TRPMR3Reset and CPU hot plugging.
    731731 *
    732  * @param   pVCpu               The virtual CPU handle.
     732 * @param   pVCpu               Pointer to the VMCPU.
    733733 */
    734734VMMR3DECL(void) TRPMR3ResetCpu(PVMCPU pVCpu)
  • trunk/src/VBox/VMM/VMMR3/VM.cpp

    r41802 r41803  
    12111211 *
    12121212 * @param   pVM             Pointer to the VM.
    1213  * @param   pVCpu           The VMCPU handle of the EMT.
     1213 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    12141214 * @param   pvUser          Ignored.
    12151215 */
     
    13001300 *
    13011301 * @param   pVM             Pointer to the VM.
    1302  * @param   pVCpu           The VMCPU handle of the EMT.
     1302 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    13031303 * @param   pvUser          Ignored.
    13041304 */
     
    13821382 *
    13831383 * @param   pVM             Pointer to the VM.
    1384  * @param   pVCpu           The VMCPU handle of the EMT.
     1384 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    13851385 * @param   pvUser          Ignored.
    13861386 */
     
    14641464 *
    14651465 * @param   pVM             Pointer to the VM.
    1466  * @param   pVCpu           The VMCPU handle of the EMT.
     1466 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    14671467 * @param   pvUser          The pfSuspended argument of vmR3SaveTeleport.
    14681468 */
     
    15641564 *
    15651565 * @param   pVM             Pointer to the VM.
    1566  * @param   pVCpu           The VMCPU handle of the EMT.
     1566 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    15671567 * @param   pvUser          The pfSuspended argument of vmR3SaveTeleport.
    15681568 */
     
    21562156 *
    21572157 * @param   pVM             Pointer to the VM.
    2158  * @param   pVCpu           The VMCPU handle of the EMT.
     2158 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    21592159 * @param   pvUser          Ignored.
    21602160 */
     
    27862786 *
    27872787 * @param   pVM             Pointer to the VM.
    2788  * @param   pVCpu           The VMCPU handle of the EMT.
     2788 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    27892789 * @param   pvUser          Ignored.
    27902790 */
     
    40894089 *
    40904090 * @param   pVM             Pointer to the VM.
    4091  * @param   pVCpu           The VMCPU handle of the EMT.
     4091 * @param   pVCpu           Pointer to the VMCPU of the EMT.
    40924092 * @param   pvUser          Ignored.
    40934093 */
  • trunk/src/VBox/VMM/VMMR3/VMEmt.cpp

    r41802 r41803  
    11901190 * @returns VBox strict status code.
    11911191 * @param   pVM                 Pointer to the VM.
    1192  * @param   pVCpu               The VMCPU handle for the calling EMT.
     1192 * @param   pVCpu               Pointer to the VMCPU of the calling EMT.
    11931193 * @param   pvUser              The new g_aHaltMethods index.
    11941194 */
  • trunk/src/VBox/VMM/VMMR3/VMM.cpp

    r41802 r41803  
    20432043 * @returns VBox status code.
    20442044 * @param   pVM     Pointer to the VM.
    2045  * @param   pVCpu   VMCPU handle
     2045 * @param   pVCpu   Pointer to the VMCPU.
    20462046 * @remark  Careful with critsects.
    20472047 */
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