VirtualBox

Changeset 44869 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Feb 28, 2013 3:42:02 PM (12 years ago)
Author:
vboxsync
Message:

Build fix.

Location:
trunk/src/VBox
Files:
5 edited

Legend:

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

    r44863 r44869  
    455455        PVBOXSERVICECTRLREQUEST pRequest;
    456456        rc = GstCntlProcessRequestAllocEx(&pRequest, VBOXSERVICECTRLREQUEST_PROC_TERM,
    457                                           NULL /* pvBuf */, NULL /* cbBuf */, pHostCtx->uContextID);
     457                                          NULL /* pvBuf */, 0 /* cbBuf */, pHostCtx->uContextID);
    458458        if (RT_SUCCESS(rc))
    459459        {
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.h

    r44863 r44869  
    228228     *  @todo Would be nice to have a RTListGetAnchor(). */
    229229    PRTLISTANCHOR                   pAnchor;
    230     /** Node to global guest control file list.
     230    /** Node to global guest control file list. */
    231231    /** @todo Use a map later? */
    232232    RTLISTNODE                      Node;
     
    266266typedef struct VBOXSERVICECTRLSESSION
    267267{
    268     /** Node to global guest control session list.
     268    /** Node to global guest control session list. */
    269269    /** @todo Use a map later? */
    270270    RTLISTNODE                      Node;
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp

    r44863 r44869  
    4747*   Internal Functions                                                         *
    4848*******************************************************************************/
    49 int                         gstcntlSessionFileDestroy(PVBOXSERVICECTRLFILE pFile);
    50 int                         gstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms);
     49static int                  gstcntlSessionFileDestroy(PVBOXSERVICECTRLFILE pFile);
     50static int                  gstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms);
    5151static PVBOXSERVICECTRLFILE gstcntlSessionGetFile(uint32_t uHandle);
    5252static int                  gstcntlSessionHandleFileOpen(uint32_t uClientId, uint32_t cParms);
     
    970970}
    971971
    972 int gstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms)
     972static int gstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms)
    973973{
    974974    VBoxServiceVerbose(0, "Session %RU32 is going to shutdown ...\n", g_uSessionID);
  • trunk/src/VBox/HostServices/GuestControl/service.cpp

    r44863 r44869  
    409409typedef struct ClientState
    410410{
     411    ClientState(void)
     412        : mSvcHelpers(NULL),
     413          mFlags(0), mContextFilter(0),
     414          mpHostCmd(NULL), mHostCmdRc(VINF_SUCCESS), mHostCmdTries(0),
     415          mIsPending(false) {}
     416
    411417    ClientState(PVBOXHGCMSVCHELPERS pSvcHelpers)
    412         : mSvcHelpers(pSvcHelpers), mpHostCmd(NULL),
    413           mFlags(0), mContextFilter(0), mIsPending(false),
    414           mHostCmdTries(0), mHostCmdRc(VINF_SUCCESS) {}
    415 
    416     ClientState(void)
    417         : mSvcHelpers(NULL), mpHostCmd(NULL),
    418           mFlags(0), mContextFilter(0), mIsPending(false),
    419           mHostCmdTries(0), mHostCmdRc(VINF_SUCCESS) {}
     418        : mSvcHelpers(pSvcHelpers),
     419          mFlags(0), mContextFilter(0),
     420          mpHostCmd(NULL), mHostCmdRc(VINF_SUCCESS), mHostCmdTries(0),
     421          mIsPending(false) {}
    420422
    421423    bool WantsHostCommand(const HostCommand *pHostCmd) const
     
    913915                itContext++;
    914916            }
    915             itClientState = mClientStateMap.erase(itClientState);
     917            mClientStateMap.erase(itClientState++);
    916918        }
    917919        else
  • trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp

    r44863 r44869  
    1 
    21/* $Id$ */
    32/** @file
    4  * VirtualBox Main - XXX.
     3 * VirtualBox Main - Guest session tasks.
    54 */
    65
    76/*
    8  * Copyright (C) 2012 Oracle Corporation
     7 * Copyright (C) 2012-2013 Oracle Corporation
    98 *
    109 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    139138HRESULT GuestSessionTask::setProgressErrorMsg(HRESULT hr, const Utf8Str &strMsg)
    140139{
    141     LogFlowFunc(("mProgress=%p, hr=%Rhrc, strMsg=%s\n",
    142                  mProgress, hr, strMsg.c_str()));
     140    LogFlowFunc(("hr=%Rhrc, strMsg=%s\n",
     141                 hr, strMsg.c_str()));
    143142
    144143    if (mProgress.isNull()) /* Progress is optional. */
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