VirtualBox

Ignore:
Timestamp:
Apr 17, 2010 6:08:28 PM (15 years ago)
Author:
vboxsync
Message:

*: whitespace cleanups by scm and two manually picked nits.

Location:
trunk/src/VBox/Additions/common/VBoxService
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp

    r28420 r28434  
    145145    }
    146146    else
    147     {     
    148         rc = VBoxServiceControlExecProcess(uContextID, szCmd, uFlags, szArgs, uNumArgs,                                           
     147    {
     148        rc = VBoxServiceControlExecProcess(uContextID, szCmd, uFlags, szArgs, uNumArgs,
    149149                                           szEnv, cbEnv, uNumEnvVars,
    150150                                           szStdIn, szStdOut, szStdErr,
     
    272272        if (RTListNodeIsLast(&g_GuestControlExecThreads, &pNode->Node))
    273273              break;
    274        
    275         PVBOXSERVICECTRLTHREAD pNext = RTListNodeGetNext(&pNode->Node, VBOXSERVICECTRLTHREAD, Node);       
     274
     275        PVBOXSERVICECTRLTHREAD pNext = RTListNodeGetNext(&pNode->Node, VBOXSERVICECTRLTHREAD, Node);
    276276        pNode = pNext;
    277277    }
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp

    r28420 r28434  
    267267     */
    268268    AssertPtr(pThread);
    269     VBoxServiceVerbose(3, "Control: Process started: PID=%u, CID=%u\n", 
     269    VBoxServiceVerbose(3, "Control: Process started: PID=%u, CID=%u\n",
    270270                       pThread->uPID, pThread->uContextID);
    271271    rc = VbglR3GuestCtrlExecReportStatus(pThread->uClientID, pThread->uContextID,
    272                                          pThread->uPID, PROC_STS_STARTED, 0 /* u32Flags */, 
     272                                         pThread->uPID, PROC_STS_STARTED, 0 /* u32Flags */,
    273273                                         NULL /* pvData */, 0 /* cbData */);
    274274
     
    384384        /*
    385385         * Need to exit?
    386          */   
     386         */
    387387        if (pThread->fShutdown)
    388388            break;
     
    463463            VBoxServiceError("Control: Process has reached an undefined status!\n");
    464464        }
    465        
    466         VBoxServiceVerbose(3, "Control: Process ended: PID=%u, CID=%u, Status=%u, Flags=%u\n", 
     465
     466        VBoxServiceVerbose(3, "Control: Process ended: PID=%u, CID=%u, Status=%u, Flags=%u\n",
    467467                           pThread->uPID, pThread->uContextID, uStatus, uFlags);
    468468        rc = VbglR3GuestCtrlExecReportStatus(pThread->uClientID, pThread->uContextID,
     
    529529/** Allocates and gives back a thread data struct which then can be used by the worker thread. */
    530530int VBoxServiceControlExecAllocateThreadData(PVBOXSERVICECTRLTHREAD pThread,
    531                                              uint32_t u32ContextID, 
    532                                              const char *pszCmd, uint32_t uFlags, 
    533                                              const char *pszArgs, uint32_t uNumArgs,                                           
     531                                             uint32_t u32ContextID,
     532                                             const char *pszCmd, uint32_t uFlags,
     533                                             const char *pszArgs, uint32_t uNumArgs,
    534534                                             const char *pszEnv, uint32_t cbEnv, uint32_t uNumEnvVars,
    535535                                             const char *pszStdIn, const char *pszStdOut, const char *pszStdErr,
     
    554554
    555555    /* Prepare argument list. */
    556     int rc = RTGetOptArgvFromString(&pThread->papszArgs, (int*)&pThread->uNumArgs, 
     556    int rc = RTGetOptArgvFromString(&pThread->papszArgs, (int*)&pThread->uNumArgs,
    557557                                    (uNumArgs > 0) ? pszArgs : "", NULL);
    558558    /* Did we get the same result? */
     
    592592
    593593    /* Adjust time limit value. */
    594     pThread->uTimeLimitMS = (   (uTimeLimitMS == UINT32_MAX) 
     594    pThread->uTimeLimitMS = (   (uTimeLimitMS == UINT32_MAX)
    595595                             || (uTimeLimitMS == 0)) ?
    596596                             RT_INDEFINITE_WAIT : uTimeLimitMS;
     
    695695                                rc = RTProcCreateEx(pThread->pszCmd, pThread->papszArgs, hEnv, pThread->uFlags,
    696696                                                    phStdIn, phStdOut, phStdErr,
    697                                                     strlen(pThread->pszUser) ? pThread->pszUser : NULL, 
    698                                                     strlen(pThread->pszUser) && strlen(pThread->pszPassword) ? pThread->pszPassword : NULL, 
     697                                                    strlen(pThread->pszUser) ? pThread->pszUser : NULL,
     698                                                    strlen(pThread->pszUser) && strlen(pThread->pszPassword) ? pThread->pszPassword : NULL,
    699699                                                    &hProcess);
    700700                                if (RT_SUCCESS(rc))
     
    730730                                else /* Something went wrong; report error! */
    731731                                {
    732                                     int rc2 = VbglR3GuestCtrlExecReportStatus(pThread->uClientID, pThread->uContextID, pThread->uPID, 
     732                                    int rc2 = VbglR3GuestCtrlExecReportStatus(pThread->uClientID, pThread->uContextID, pThread->uPID,
    733733                                                                              PROC_STS_ERROR, rc,
    734734                                                                              NULL /* pvData */, 0 /* cbData */);
    735735                                    if (RT_FAILURE(rc2))
    736                                         VBoxServiceError("Control: Could not report process start error! Error: %Rrc (process error %Rrc)\n", 
     736                                        VBoxServiceError("Control: Could not report process start error! Error: %Rrc (process error %Rrc)\n",
    737737                                                         rc2, rc);
    738738                                }
     
    753753
    754754    VbglR3GuestCtrlDisconnect(pThread->uClientID);
    755     VBoxServiceVerbose(3, "Control: Thread of process \"%s\" (PID: %u) ended with rc=%Rrc\n", 
     755    VBoxServiceVerbose(3, "Control: Thread of process \"%s\" (PID: %u) ended with rc=%Rrc\n",
    756756                       pThread->pszCmd, pThread->uPID, rc);
    757757    return rc;
     
    765765}
    766766
    767 int VBoxServiceControlExecProcess(uint32_t uContextID, const char *pszCmd, uint32_t uFlags, 
    768                                   const char *pszArgs, uint32_t uNumArgs,                                           
     767int VBoxServiceControlExecProcess(uint32_t uContextID, const char *pszCmd, uint32_t uFlags,
     768                                  const char *pszArgs, uint32_t uNumArgs,
    769769                                  const char *pszEnv, uint32_t cbEnv, uint32_t uNumEnvVars,
    770770                                  const char *pszStdIn, const char *pszStdOut, const char *pszStdErr,
     
    777777    {
    778778        rc = VBoxServiceControlExecAllocateThreadData(pThread,
    779                                                       uContextID, 
    780                                                       pszCmd, uFlags, 
     779                                                      uContextID,
     780                                                      pszCmd, uFlags,
    781781                                                      pszArgs, uNumArgs,
    782                                                       pszEnv, cbEnv, uNumEnvVars, 
    783                                                       pszStdIn, pszStdOut, pszStdErr, 
     782                                                      pszEnv, cbEnv, uNumEnvVars,
     783                                                      pszStdIn, pszStdOut, pszStdErr,
    784784                                                      pszUser, pszPassword,
    785785                                                      uTimeLimitMS);
    786786        if (RT_SUCCESS(rc))
    787787        {
    788             rc = RTThreadCreate(&pThread->Thread, VBoxServiceControlExecThread, 
     788            rc = RTThreadCreate(&pThread->Thread, VBoxServiceControlExecThread,
    789789                                (void *)(PVBOXSERVICECTRLTHREAD*)pThread, 0,
    790790                                RTTHREADTYPE_DEFAULT, RTTHREADFLAGS_WAITABLE, "Exec");
    791791            if (RT_FAILURE(rc))
    792792            {
    793                 VBoxServiceError("Control: RTThreadCreate failed, rc=%Rrc\n, pThread=%p\n", 
     793                VBoxServiceError("Control: RTThreadCreate failed, rc=%Rrc\n, pThread=%p\n",
    794794                                 rc, pThread);
    795795            }
     
    808808                }
    809809            }
    810    
     810
    811811            if (RT_FAILURE(rc))
    812812                VBoxServiceControlExecDestroyThreadData(pThread);
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h

    r28420 r28434  
    231231
    232232#ifdef VBOX_WITH_GUEST_CONTROL
    233 extern int VBoxServiceControlExecProcess(uint32_t uContext, const char *pszCmd, uint32_t uFlags, 
    234                                          const char *pszArgs, uint32_t uNumArgs,                                           
     233extern int VBoxServiceControlExecProcess(uint32_t uContext, const char *pszCmd, uint32_t uFlags,
     234                                         const char *pszArgs, uint32_t uNumArgs,
    235235                                         const char *pszEnv, uint32_t cbEnv, uint32_t uNumEnvVars,
    236236                                         const char *pszStdIn, const char *pszStdOut, const char *pszStdErr,
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp

    r28432 r28434  
    4646
    4747#if defined(RT_OS_WINDOWS) && !defined(TARGET_NT4)
    48 #include <tlhelp32.h> 
     48#include <tlhelp32.h>
    4949#include <psapi.h>
    5050
     
    162162                }
    163163            }
    164                
     164
    165165            pBaseAddress = (BYTE *)MemInfo[i].BaseAddress + MemInfo[i].RegionSize;
    166166            if (dwModuleSize > MemInfo[i].RegionSize)
     
    175175    while (dwModuleSize);
    176176
    177     int rc = VbglR3RegisterSharedModule(pModule->Info.szModule, pModule->szFileVersion, (RTGCPTR64)pModule->Info.modBaseAddr, 
     177    int rc = VbglR3RegisterSharedModule(pModule->Info.szModule, pModule->szFileVersion, (RTGCPTR64)pModule->Info.modBaseAddr,
    178178                                        pModule->Info.modBaseSize, idxRegion, aRegions);
    179179    AssertRC(rc);
     
    238238        }
    239239
    240         printf( "\n\n     MODULE NAME:     %s",           ModuleInfo.szModule ); 
    241         printf( "\n     executable     = %s",             ModuleInfo.szExePath ); 
    242         printf( "\n     process ID     = 0x%08X",         ModuleInfo.th32ProcessID ); 
    243         printf( "\n     base address   = 0x%08X", (DWORD) ModuleInfo.modBaseAddr ); 
    244         printf( "\n     base size      = %d",             ModuleInfo.modBaseSize ); 
     240        printf( "\n\n     MODULE NAME:     %s",           ModuleInfo.szModule );
     241        printf( "\n     executable     = %s",             ModuleInfo.szExePath );
     242        printf( "\n     process ID     = 0x%08X",         ModuleInfo.th32ProcessID );
     243        printf( "\n     base address   = 0x%08X", (DWORD) ModuleInfo.modBaseAddr );
     244        printf( "\n     base size      = %d",             ModuleInfo.modBaseSize );
    245245    }
    246246    while (Module32Next(hSnapshot, &ModuleInfo));
     
    270270    Process32First(hSnapshot, &ProcessInfo);
    271271
    272     do 
     272    do
    273273    {
    274274        VBoxServicePageSharingInspectModules(ProcessInfo.th32ProcessID, &pNewTree);
     
    361361    for (;;)
    362362    {
    363        
     363
    364364        VBoxServicePageSharingInspectGuest();
    365365
Note: See TracChangeset for help on using the changeset viewer.

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