Changeset 71281 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 9, 2018 9:24:01 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestProcessImpl.h
r71272 r71281 5 5 6 6 /* 7 * Copyright (C) 2012-201 7Oracle Corporation7 * Copyright (C) 2012-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 223 223 GuestProcessStream &getStdErr(void) { return mStdErr; } 224 224 225 int wait(uint32_t f Flags, int *pGuestRc);226 227 int waitEx(uint32_t f Flags, GuestProcessStreamBlock *pStreamBlock, int *pGuestRc);225 int wait(uint32_t fToolWaitFlags, int *pGuestRc); 226 227 int waitEx(uint32_t fToolWaitFlags, GuestProcessStreamBlock *pStreamBlock, int *pGuestRc); 228 228 229 229 bool isRunning(void); … … 235 235 public: 236 236 237 /** Wrapped @name Static run methods. 238 * @{ */ 237 239 static int run(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, int *pGuestRc); 238 240 … … 244 246 static int runExErrorInfo(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, 245 247 GuestCtrlStreamObjects *pStrmOutObjects, uint32_t cStrmOutObjects, GuestProcessToolErrorInfo &errorInfo); 246 248 /** @} */ 249 250 /** Wrapped @name Static exit code conversion methods. 251 * @{ */ 247 252 static int exitCodeToRc(const GuestProcessStartupInfo &startupInfo, int32_t iExitCode); 248 253 249 254 static int exitCodeToRc(const char *pszTool, int32_t iExitCode); 255 /** @} */ 250 256 251 257 protected: 252 258 259 /** Pointer to session this toolbox object is bound to. */ 253 260 ComObjPtr<GuestSession> pSession; 261 /** Pointer to process object this toolbox object is bound to. */ 254 262 ComObjPtr<GuestProcess> pProcess; 263 /** The toolbox' startup info. */ 255 264 GuestProcessStartupInfo mStartupInfo; 265 /** Stream object for handling the toolbox' stdout data. */ 256 266 GuestProcessStream mStdOut; 267 /** Stream object for handling the toolbox' stderr data. */ 257 268 GuestProcessStream mStdErr; 258 269 };
Note:
See TracChangeset
for help on using the changeset viewer.