Changeset 32730 in vbox for trunk/src/VBox/Main/ConsoleImpl.cpp
- Timestamp:
- Sep 23, 2010 2:49:25 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r32727 r32730 5404 5404 /* setup host core dumper for the VM */ 5405 5405 Bstr value; 5406 HRESULT hrc = mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpEnabled") , value.asOutParam());5406 HRESULT hrc = mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpEnabled").raw(), value.asOutParam()); 5407 5407 if (SUCCEEDED(hrc) && value == "1") 5408 5408 { 5409 5409 Bstr coreDumpDir, coreDumpReplaceSys, coreDumpLive; 5410 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpDir") , coreDumpDir.asOutParam());5411 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpReplaceSystemDump") , coreDumpReplaceSys.asOutParam());5412 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpLive") , coreDumpLive.asOutParam());5410 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpDir").raw(), coreDumpDir.asOutParam()); 5411 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpReplaceSystemDump").raw(), coreDumpReplaceSys.asOutParam()); 5412 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpLive").raw(), coreDumpLive.asOutParam()); 5413 5413 5414 5414 uint32_t fCoreFlags = 0;
Note:
See TracChangeset
for help on using the changeset viewer.