Changeset 79283 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 21, 2019 8:35:57 PM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestProcessImpl.h
r77587 r79283 81 81 static HRESULT i_setErrorExternal(VirtualBoxBase *pInterface, int guestRc); 82 82 static ProcessWaitResult_T i_waitFlagsToResultEx(uint32_t fWaitFlags, ProcessStatus_T oldStatus, ProcessStatus_T newStatus, uint32_t uProcFlags, uint32_t uProtocol); 83 #if 0 /* unused */ 83 84 static bool i_waitResultImpliesEx(ProcessWaitResult_T waitResult, ProcessStatus_T procStatus, uint32_t uProtocol); 85 #endif 84 86 /** @} */ 85 87 -
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r79239 r79283 1342 1342 if (newStatus == ProcessStatus_Started) 1343 1343 { 1344 /* *1344 /* 1345 1345 * Filter out waits which are *not* supported using 1346 1346 * older guest control Guest Additions. 1347 1347 * 1348 ** @todo ProcessWaitForFlag_Std* flags are not implemented yet.1349 1348 */ 1349 /** @todo ProcessWaitForFlag_Std* flags are not implemented yet. */ 1350 1350 if (uProtocol < 99) /* See @todo above. */ 1351 1351 { … … 1657 1657 } 1658 1658 1659 #if 0 /* Unused */ 1659 1660 /* static */ 1660 1661 bool GuestProcess::i_waitResultImpliesEx(ProcessWaitResult_T waitResult, ProcessStatus_T procStatus, uint32_t uProtocol) … … 1687 1688 return fImplies; 1688 1689 } 1690 #endif /* unused */ 1689 1691 1690 1692 int GuestProcess::i_writeData(uint32_t uHandle, uint32_t uFlags,
Note:
See TracChangeset
for help on using the changeset viewer.