VirtualBox

Changeset 104623 in vbox


Ignore:
Timestamp:
May 14, 2024 11:41:26 AM (12 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
163167
Message:

ValidationKit/TXS: Fixed warnings + shutdown waiting check. bugref:3409

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecService.cpp

    r98103 r104623  
    16471647     * reconnecting and seeing that our UUID was unchanged.
    16481648     */
    1649     int rc;
    16501649    if (pPktHdr->cb != sizeof(TXSPKTHDR))
    16511650        return txsReplyBadSize(pPktHdr, sizeof(TXSPKTHDR));
    16521651    g_pTransport->pfnNotifyReboot();
    1653     rc = txsReplyAck(pPktHdr);
     1652    int rc = txsReplyAck(pPktHdr);
     1653    AssertRCReturn(rc, rc);
    16541654    RTThreadSleep(2560);                /* fudge factor */
    16551655    g_pTransport->pfnTerm();
     
    23762376    {
    23772377        rc2 = RTThreadWait(pTxsExec->hThreadWaiter, RT_MS_1SEC / 2, NULL);
    2378         if (RT_SUCCESS(rc))
     2378        if (RT_SUCCESS(rc2))
    23792379        {
    23802380            pTxsExec->hThreadWaiter = NIL_RTTHREAD;
     
    36533653    bool        fAutoUpgrade    = true;
    36543654    bool        fDaemonize      = true;
    3655     bool        fDaemonized     = false;
    36563655    const char *pszUpgrading    = NULL;
    36573656#ifdef RT_OS_SOLARIS
     
    37843783
    37853784            case 'Z':
    3786                 fDaemonized = true;
    37873785                fDaemonize = false;
    37883786                break;
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