Changeset 71320 in vbox
- Timestamp:
- Mar 14, 2018 1:00:21 PM (7 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
-
Additions/common/VBoxService/VBoxServiceControlSession.cpp (modified) (2 diffs)
-
HostServices/GuestControl/service.cpp (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r71316 r71320 1710 1710 PVBOXSERVICECTRLSESSIONTHREAD pSessionThread, uint32_t uCtrlSessionThread) 1711 1711 { 1712 RT_NOREF 1(uCtrlSessionThread);1712 RT_NOREF(uCtrlSessionThread); 1713 1713 1714 1714 /* … … 2074 2074 int VGSvcGstCtrlSessionThreadWait(PVBOXSERVICECTRLSESSIONTHREAD pThread, uint32_t uTimeoutMS, uint32_t fFlags) 2075 2075 { 2076 RT_NOREF 1(fFlags);2076 RT_NOREF(fFlags); 2077 2077 AssertPtrReturn(pThread, VERR_INVALID_POINTER); 2078 2078 /** @todo Validate closing flags. */ -
trunk/src/VBox/HostServices/GuestControl/service.cpp
r69500 r71320 5 5 6 6 /* 7 * Copyright (C) 2011-201 7Oracle Corporation7 * Copyright (C) 2011-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1041 1041 int Service::clientConnect(uint32_t u32ClientID, void *pvClient) 1042 1042 { 1043 RT_NOREF 1(pvClient);1043 RT_NOREF(pvClient); 1044 1044 LogFlowFunc(("[Client %RU32] Connected\n", u32ClientID)); 1045 1045 #ifdef VBOX_STRICT … … 1069 1069 int Service::clientDisconnect(uint32_t u32ClientID, void *pvClient) 1070 1070 { 1071 RT_NOREF 1(pvClient);1071 RT_NOREF(pvClient); 1072 1072 LogFlowFunc(("[Client %RU32] Disconnected (%zu clients total)\n", 1073 1073 u32ClientID, mClientStateMap.size())); … … 1173 1173 uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 1174 1174 { 1175 RT_NOREF 1(callHandle);1175 RT_NOREF(callHandle); 1176 1176 1177 1177 /* … … 1224 1224 uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 1225 1225 { 1226 RT_NOREF 2(callHandle, paParms);1226 RT_NOREF(callHandle, paParms); 1227 1227 1228 1228 /* … … 1252 1252 uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 1253 1253 { 1254 RT_NOREF 2(callHandle, paParms);1254 RT_NOREF(callHandle, paParms); 1255 1255 1256 1256 /* … … 1576 1576 int Service::sessionClose(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 1577 1577 { 1578 RT_NOREF 2(u32ClientID, callHandle);1578 RT_NOREF(u32ClientID, callHandle); 1579 1579 if (cParms < 2) 1580 1580 return VERR_INVALID_PARAMETER;
Note:
See TracChangeset
for help on using the changeset viewer.

