Changeset 62882 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Aug 2, 2016 3:31:02 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109482
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r62521 r62882 322 322 unsigned long fFlags = MS_NODEV; 323 323 324 const char *szOptions = { "rw" };324 /*const char *szOptions = { "rw" }; - ??? */ 325 325 struct vbsf_mount_info_new mntinf; 326 326 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r62521 r62882 78 78 /** The guest control service client ID. */ 79 79 static uint32_t g_uControlSvcClientID = 0; 80 #if 0 /** @todo process limit */ 80 81 /** How many started guest processes are kept into memory for supplying 81 82 * information to the host. Default is 256 processes. If 0 is specified, 82 83 * the maximum number of processes is unlimited. */ 83 84 static uint32_t g_uControlProcsMaxKept = 256; 85 #endif 84 86 /** List of guest control session threads (VBOXSERVICECTRLSESSIONTHREAD). 85 87 * A guest session thread represents a forked guest session process -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlProcess.cpp
r62850 r62882 50 50 static int vgsvcGstCtrlProcessAssignPID(PVBOXSERVICECTRLPROCESS pThread, uint32_t uPID); 51 51 static int vgsvcGstCtrlProcessLock(PVBOXSERVICECTRLPROCESS pProcess); 52 static int vgsvcGstCtrlProcessRequest(PVBOXSERVICECTRLPROCESS pProcess, const PVBGLR3GUESTCTRLCMDCTX pHostCtx,53 PFNRT pfnFunction, unsigned cArgs, ...);54 52 static int vgsvcGstCtrlProcessSetupPipe(const char *pszHowTo, int fd, PRTHANDLE ph, PRTHANDLE *pph, 55 53 PRTPIPE phPipe); … … 304 302 305 303 304 #ifdef DEBUG 306 305 /** 307 306 * Names a poll handle ID. … … 330 329 } 331 330 } 331 #endif /* DEBUG */ 332 332 333 333 … … 847 847 848 848 849 #if 0 /* unused */ 849 850 /** 850 851 * Initializes a pipe's handle and pipe object. … … 865 866 return VINF_SUCCESS; 866 867 } 868 #endif 867 869 868 870 … … 1215 1217 PRTPROCESS phProcess) 1216 1218 { 1219 #ifndef RT_OS_WINDOWS 1220 RT_NOREF1(pszDomain); 1221 #endif 1217 1222 AssertPtrReturn(pszExec, VERR_INVALID_PARAMETER); 1218 1223 AssertPtrReturn(papszArgs, VERR_INVALID_PARAMETER);
Note:
See TracChangeset
for help on using the changeset viewer.