Changeset 92690 in vbox for trunk/src/VBox
- Timestamp:
- Dec 2, 2021 10:38:56 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlProcess.cpp
r92687 r92690 1964 1964 VGSvcVerbose(3, "[PID %RU32]: vgsvcGstCtrlProcessOnInput returned with rc=%Rrc\n", pThis->uPID, rc); 1965 1965 #endif 1966 return VINF_SUCCESS; /** @todo Return rc here as soon as RTReqQueue todos are fixed. */1966 return rc; 1967 1967 } 1968 1968 … … 2055 2055 VGSvcVerbose(3, "[PID %RU32]: Reading output returned with rc=%Rrc\n", pThis->uPID, rc); 2056 2056 #endif 2057 return VINF_SUCCESS; /** @todo Return rc here as soon as RTReqQueue todos are fixed. */2057 return rc; 2058 2058 } 2059 2059 … … 2066 2066 VGSvcVerbose(3, "[PID %RU32]: Setting shutdown flag ...\n", pThis->uPID); 2067 2067 2068 return VINF_SUCCESS; /** @todo Return rc here as soon as RTReqQueue todos are fixed. */2068 return VINF_SUCCESS; 2069 2069 } 2070 2070
Note:
See TracChangeset
for help on using the changeset viewer.