Changeset 104623 in vbox
- Timestamp:
- May 14, 2024 11:41:26 AM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 163167
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecService.cpp
r98103 r104623 1647 1647 * reconnecting and seeing that our UUID was unchanged. 1648 1648 */ 1649 int rc;1650 1649 if (pPktHdr->cb != sizeof(TXSPKTHDR)) 1651 1650 return txsReplyBadSize(pPktHdr, sizeof(TXSPKTHDR)); 1652 1651 g_pTransport->pfnNotifyReboot(); 1653 rc = txsReplyAck(pPktHdr); 1652 int rc = txsReplyAck(pPktHdr); 1653 AssertRCReturn(rc, rc); 1654 1654 RTThreadSleep(2560); /* fudge factor */ 1655 1655 g_pTransport->pfnTerm(); … … 2376 2376 { 2377 2377 rc2 = RTThreadWait(pTxsExec->hThreadWaiter, RT_MS_1SEC / 2, NULL); 2378 if (RT_SUCCESS(rc ))2378 if (RT_SUCCESS(rc2)) 2379 2379 { 2380 2380 pTxsExec->hThreadWaiter = NIL_RTTHREAD; … … 3653 3653 bool fAutoUpgrade = true; 3654 3654 bool fDaemonize = true; 3655 bool fDaemonized = false;3656 3655 const char *pszUpgrading = NULL; 3657 3656 #ifdef RT_OS_SOLARIS … … 3784 3783 3785 3784 case 'Z': 3786 fDaemonized = true;3787 3785 fDaemonize = false; 3788 3786 break;
Note:
See TracChangeset
for help on using the changeset viewer.