~ubuntu-branches/ubuntu/vivid/virtualbox-ose/vivid

« back to all changes in this revision

Viewing changes to src/VBox/Main/MachineDebuggerImpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2010-03-11 17:16:37 UTC
  • mfrom: (0.3.4 upstream) (0.4.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100311171637-43z64ia3ccpj8vqn
Tags: 3.1.4-dfsg-2ubuntu1
* Merge from Debian unstable (LP: #528561), remaining changes:
  - VirtualBox should go in Accessories, not in System tools (LP: #288590)
    - debian/virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add Apport hook
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Add Launchpad integration
    - debian/control
    - debian/lpi-bug.xpm
    - debian/patches/u02-lp-integration.dpatch
  - Replace *-source packages with transitional packages for *-dkms
* Fix crash in vboxvideo_drm with kernel 2.6.33 / backported drm code
  (LP: #535297)
* Add a list of linux-headers packages to the apport hook
* Update debian/patches/u02-lp-integration.dpatch with a
  DEP-3 compliant header
* Add ${misc:Depends} to virtualbox-ose-source and virtualbox-ose-guest-source
  Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
655
655
    Console::SafeVMPtrQuiet pVM (mParent);
656
656
 
657
657
    if (!pVM.isOk())
658
 
        return E_FAIL;
 
658
        return setError(VBOX_E_INVALID_VM_STATE, "Machine is not running");
659
659
 
660
660
    STAMR3Reset (pVM, Utf8Str (aPattern).raw());
661
661
 
673
673
    Console::SafeVMPtrQuiet pVM (mParent);
674
674
 
675
675
    if (!pVM.isOk())
676
 
        return E_FAIL;
 
676
        return setError(VBOX_E_INVALID_VM_STATE, "Machine is not running");
677
677
 
678
678
    STAMR3Dump (pVM, Utf8Str (aPattern).raw());
679
679
 
693
693
    Console::SafeVMPtrQuiet pVM (mParent);
694
694
 
695
695
    if (!pVM.isOk())
696
 
        return E_FAIL;
 
696
        return setError(VBOX_E_INVALID_VM_STATE, "Machine is not running");
697
697
 
698
698
    char *pszSnapshot;
699
699
    int vrc = STAMR3Snapshot (pVM, Utf8Str (aPattern).raw(), &pszSnapshot, NULL,