Changeset 61930 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 29, 2016 12:37:43 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108369
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r61610 r61930 736 736 const char *pszErrorFmt, va_list va); 737 737 738 void i_ setVMRuntimeErrorCallbackF(uint32_t fFatal, const char *pszErrorId, const char *pszFormat, ...);739 static DECLCALLBACK(void) i_ setVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFatal,740 738 void i_atVMRuntimeErrorCallbackF(uint32_t fFatal, const char *pszErrorId, const char *pszFormat, ...); 739 static DECLCALLBACK(void) i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFatal, 740 const char *pszErrorId, const char *pszFormat, va_list va); 741 741 742 742 HRESULT i_captureUSBDevices(PUVM pUVM); -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r61644 r61930 8030 8030 rc = rc2; 8031 8031 if (online) 8032 i_setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", 8033 N_("Broken shared folder!")); 8032 i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", N_("Broken shared folder!")); 8034 8033 } 8035 8034 … … 9237 9236 9238 9237 /** 9239 * VM runtime error callback function. 9238 * VM runtime error callback function (FNVMATRUNTIMEERROR). 9239 * 9240 9240 * See VMSetRuntimeError for the detailed description of parameters. 9241 9241 * … … 9250 9250 */ 9251 9251 /* static */ DECLCALLBACK(void) 9252 Console::i_setVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags, 9253 const char *pszErrorId, 9254 const char *pszFormat, va_list va) 9252 Console::i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags, 9253 const char *pszErrorId, const char *pszFormat, va_list va) 9255 9254 { 9256 9255 bool const fFatal = !!(fFlags & VMSETRTERR_FLAGS_FATAL); … … 9679 9678 { 9680 9679 ErrorInfoKeeper eik; 9681 pConsole->i_ setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",9680 pConsole->i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", 9682 9681 N_("The shared folder '%s' could not be set up: %ls.\n" 9683 9682 "The shared folder setup will not be complete. It is recommended to power down the virtual " -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r61913 r61930 3313 3313 * Register VM runtime error handler. 3314 3314 */ 3315 rc2 = VMR3AtRuntimeErrorRegister(pUVM, Console::i_ setVMRuntimeErrorCallback, this);3315 rc2 = VMR3AtRuntimeErrorRegister(pUVM, Console::i_atVMRuntimeErrorCallback, this); 3316 3316 AssertRC(rc2); 3317 3317 if (RT_SUCCESS(rc)) … … 3707 3707 * Ellipsis to va_list wrapper for calling setVMRuntimeErrorCallback. 3708 3708 */ 3709 void Console::i_ setVMRuntimeErrorCallbackF(uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)3709 void Console::i_atVMRuntimeErrorCallbackF(uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...) 3710 3710 { 3711 3711 va_list va; 3712 3712 va_start(va, pszFormat); 3713 i_ setVMRuntimeErrorCallback(NULL, this, fFlags, pszErrorId, pszFormat, va);3713 i_atVMRuntimeErrorCallback(NULL, this, fFlags, pszErrorId, pszFormat, va); 3714 3714 va_end(va); 3715 3715 } … … 3985 3985 const char *pszUnit; 3986 3986 uint64_t u64Print = formatDiskSize((uint64_t)i64Size, &pszUnit); 3987 i_ setVMRuntimeErrorCallbackF(0, "FatPartitionDetected",3987 i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected", 3988 3988 N_("The medium '%ls' has a logical size of %RU64%s " 3989 3989 "but the file system the medium is located on seems " … … 4016 4016 uint64_t u64PrintSiz = formatDiskSize((LONG64)i64Size, &pszUnitSiz); 4017 4017 uint64_t u64PrintMax = formatDiskSize(maxSize, &pszUnitMax); 4018 i_ setVMRuntimeErrorCallbackF(0, "FatPartitionDetected", /* <= not exact but ... */4018 i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected", /* <= not exact but ... */ 4019 4019 N_("The medium '%ls' has a logical size of %RU64%s " 4020 4020 "but the file system the medium is located on can " … … 4039 4039 const char *pszUnit; 4040 4040 uint64_t u64Print = formatDiskSize(i64Size, &pszUnit); 4041 i_ setVMRuntimeErrorCallbackF(0, "FatPartitionDetected",4041 i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected", 4042 4042 #ifdef RT_OS_WINDOWS 4043 4043 N_("The snapshot folder of this VM '%ls' seems to be located on " … … 4080 4080 || enmFsTypeFile == RTFSTYPE_XFS) 4081 4081 { 4082 i_ setVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",4082 i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected", 4083 4083 N_("The host I/O cache for at least one controller is disabled " 4084 4084 "and the medium '%ls' for this VM " … … 4097 4097 && !mfSnapshotFolderExt4WarningShown) 4098 4098 { 4099 i_ setVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",4099 i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected", 4100 4100 N_("The host I/O cache for at least one controller is disabled " 4101 4101 "and the snapshot folder for this VM " … … 4331 4331 Bstr loc; 4332 4332 hrc = pMedium->COMGETTER(Location)(loc.asOutParam()); H(); 4333 i_ setVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible",4334 4335 4336 4337 4333 i_atVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible", 4334 "The image file '%ls' is inaccessible and is being ignored. " 4335 "Please select a different image file for the virtual %s drive.", 4336 loc.raw(), 4337 enmType == DeviceType_DVD ? "DVD" : "floppy"); 4338 4338 pMedium = NULL; 4339 4339 } … … 5111 5111 if (ioctl(iSock, SIOCGIFFLAGS, &Req) >= 0) 5112 5112 if ((Req.ifr_flags & IFF_UP) == 0) 5113 i_ setVMRuntimeErrorCallbackF(0, "BridgedInterfaceDown",5113 i_atVMRuntimeErrorCallbackF(0, "BridgedInterfaceDown", 5114 5114 N_("Bridged interface %s is down. Guest will not be able to use this interface"), 5115 5115 pszBridgedIfName);
Note:
See TracChangeset
for help on using the changeset viewer.