VirtualBox

Ignore:
Timestamp:
Apr 30, 2010 10:21:00 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
60889
Message:

Guest Control/VBoxManage,Main: Immediate process output, now also cancelable with signal handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/GuestImpl.cpp

    r28887 r28926  
    478478        /** @todo Copy void* buffer contents! */
    479479
     480        /* Was progress canceled before? */
     481        BOOL fCancelled;
     482        it->pProgress->COMGETTER(Canceled)(&fCancelled);
     483
    480484        /* Do progress handling. */
    481485        Utf8Str errMsg;
     
    487491
    488492            case PROC_STS_TEN: /* Terminated normally. */
    489                 if (!it->pProgress->getCompleted())
     493                if (   !it->pProgress->getCompleted()
     494                    && !fCancelled)
     495                {
    490496                    it->pProgress->notifyComplete(S_OK);
     497                }
    491498                break;
    492499
     
    542549            && errMsg.length())
    543550        {
    544             if (!it->pProgress->getCompleted())
     551            if (   !it->pProgress->getCompleted()
     552                && !fCancelled)
    545553            {
    546554                it->pProgress->notifyComplete(E_FAIL /** @todo Find a better rc! */, COM_IIDOF(IGuest),
     
    719727            rc = progress->init(static_cast<IGuest*>(this),
    720728                                BstrFmt(tr("Executing process")),
    721                                 FALSE);
     729                                TRUE);
    722730        }
    723731        if (FAILED(rc)) return rc;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette