Changeset 97815 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Dec 15, 2022 7:39:35 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154895
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VM.cpp
r96407 r97815 1934 1934 * @param pfnProgress Progress callback. Optional. 1935 1935 * @param pvProgressUser User argument for the progress callback. 1936 * @param fTeleporting Flag whether this call is part of a teleportation operation. 1936 1937 * 1937 1938 * @thread Any thread. … … 1940 1941 */ 1941 1942 VMMR3DECL(int) VMR3LoadFromStream(PUVM pUVM, PCSSMSTRMOPS pStreamOps, void *pvStreamOpsUser, 1942 PFNVMPROGRESS pfnProgress, void *pvProgressUser )1943 { 1944 LogFlow(("VMR3LoadFromStream: pUVM=%p pStreamOps=%p pvStreamOpsUser=%p pfnProgress=%p pvProgressUser=%p \n",1945 pUVM, pStreamOps, pvStreamOpsUser, pfnProgress, pvProgressUser ));1943 PFNVMPROGRESS pfnProgress, void *pvProgressUser, bool fTeleporting) 1944 { 1945 LogFlow(("VMR3LoadFromStream: pUVM=%p pStreamOps=%p pvStreamOpsUser=%p pfnProgress=%p pvProgressUser=%p fTeleporting=%RTbool\n", 1946 pUVM, pStreamOps, pvStreamOpsUser, pfnProgress, pvProgressUser, fTeleporting)); 1946 1947 1947 1948 /* … … 1957 1958 int rc = VMR3ReqCallWaitU(pUVM, 0 /*idDstCpu*/, (PFNRT)vmR3Load, 7, 1958 1959 pUVM, (uintptr_t)NULL /*pszFilename*/, pStreamOps, pvStreamOpsUser, pfnProgress, 1959 pvProgressUser, true /*fTeleporting*/);1960 pvProgressUser, fTeleporting); 1960 1961 LogFlow(("VMR3LoadFromStream: returns %Rrc\n", rc)); 1961 1962 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.