VirtualBox

Changeset 23596 in vbox for trunk/src/VBox/VMM/SSM.cpp


Ignore:
Timestamp:
Oct 7, 2009 2:43:08 PM (15 years ago)
Author:
vboxsync
Message:

SSM: doc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/SSM.cpp

    r23595 r23596  
    41254125 * @param   enmAfter            What to do afterwards.
    41264126 * @param   pfnProgress         The progress callback.
    4127  * @param   pvUser              The progress callback user argument.
     4127 * @param   pvProgressUser      The progress callback user argument.
    41284128 * @param   ppSSM               Where to return the pointer to the saved state
    41294129 *                              handle upon successful return.  Free it using
     
    41314131 */
    41324132static int ssmR3SaveDoCreateFile(PVM pVM, const char *pszFilename, PCSSMSTRMOPS pStreamOps, void *pvStreamOpsUser,
    4133                                  SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvUser, PSSMHANDLE *ppSSM)
     4133                                 SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvProgressUser, PSSMHANDLE *ppSSM)
    41344134{
    41354135    PSSMHANDLE pSSM = (PSSMHANDLE)RTMemAllocZ(sizeof(*pSSM));
     
    41464146    pSSM->fLiveSave             = false;
    41474147    pSSM->pfnProgress           = pfnProgress;
    4148     pSSM->pvUser                = pvUser;
     4148    pSSM->pvUser                = pvProgressUser;
    41494149    pSSM->uPercent              = 0;
    41504150    pSSM->offEstProgress        = 0;
     
    46214621 *
    46224622 * @param   pVM             The VM handle.
    4623  * @param   pszFilename     Name of the file to save the state in.  This string
     4623 * @param   pszFilename     Name of the file to save the state in. This string
    46244624 *                          must remain valid until SSMR3LiveDone is called.
     4625 *                          Must be NULL if pStreamOps is used.
     4626 * @param   pStreamOps      The stream method table. NULL if pszFilename is
     4627 *                          used.
     4628 * @param   pvStreamOpsUser The user argument to the stream methods.
    46254629 * @param   enmAfter        What is planned after a successful save operation.
    46264630 * @param   pfnProgress     Progress callback. Optional.
    4627  * @param   pvUser          User argument for the progress callback.
     4631 * @param   pvProgressUser  User argument for the progress callback.
    46284632 *
    46294633 * @thread  EMT0
     
    70487052 * @param   pStreamOps      The stream method table. NULL if pszFilename is
    70497053 *                          used.
    7050  * @param   pStreamOpsUser The user argument for the stream methods.
     7054 * @param   pvStreamOpsUser The user argument for the stream methods.
    70517055 * @param   enmAfter        What is planned after a successful load operation.
    70527056 *                          Only acceptable values are SSMAFTER_RESUME and SSMAFTER_DEBUG_IT.
    70537057 * @param   pfnProgress     Progress callback. Optional.
    7054  * @param   pvUser          User argument for the progress callback.
     7058 * @param   pvProgressUser  User argument for the progress callback.
    70557059 *
    70567060 * @thread  EMT
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