Changeset 44869 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Feb 28, 2013 3:42:02 PM (12 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r44863 r44869 455 455 PVBOXSERVICECTRLREQUEST pRequest; 456 456 rc = GstCntlProcessRequestAllocEx(&pRequest, VBOXSERVICECTRLREQUEST_PROC_TERM, 457 NULL /* pvBuf */, NULL/* cbBuf */, pHostCtx->uContextID);457 NULL /* pvBuf */, 0 /* cbBuf */, pHostCtx->uContextID); 458 458 if (RT_SUCCESS(rc)) 459 459 { -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.h
r44863 r44869 228 228 * @todo Would be nice to have a RTListGetAnchor(). */ 229 229 PRTLISTANCHOR pAnchor; 230 /** Node to global guest control file list. 230 /** Node to global guest control file list. */ 231 231 /** @todo Use a map later? */ 232 232 RTLISTNODE Node; … … 266 266 typedef struct VBOXSERVICECTRLSESSION 267 267 { 268 /** Node to global guest control session list. 268 /** Node to global guest control session list. */ 269 269 /** @todo Use a map later? */ 270 270 RTLISTNODE Node; -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r44863 r44869 47 47 * Internal Functions * 48 48 *******************************************************************************/ 49 intgstcntlSessionFileDestroy(PVBOXSERVICECTRLFILE pFile);50 intgstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms);49 static int gstcntlSessionFileDestroy(PVBOXSERVICECTRLFILE pFile); 50 static int gstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms); 51 51 static PVBOXSERVICECTRLFILE gstcntlSessionGetFile(uint32_t uHandle); 52 52 static int gstcntlSessionHandleFileOpen(uint32_t uClientId, uint32_t cParms); … … 970 970 } 971 971 972 int gstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms)972 static int gstcntlSessionForkShutdown(uint32_t uClientId, uint32_t cParms) 973 973 { 974 974 VBoxServiceVerbose(0, "Session %RU32 is going to shutdown ...\n", g_uSessionID);
Note:
See TracChangeset
for help on using the changeset viewer.