Changeset 39392 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Nov 22, 2011 9:34:32 AM (13 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r39361 r39392 282 282 #endif 283 283 bool fAllowed = false; 284 intrc = VBoxServiceControlStartAllowed(&fAllowed);284 rc = VBoxServiceControlStartAllowed(&fAllowed); 285 285 if (RT_FAILURE(rc)) 286 286 VBoxServiceError("Control: Error determining whether process can be started or not, rc=%Rrc\n", rc); … … 289 289 && fAllowed) 290 290 { 291 intrc = RTCritSectEnter(&g_GuestControlThreadsCritSect);291 rc = RTCritSectEnter(&g_GuestControlThreadsCritSect); 292 292 if (RT_SUCCESS(rc)) 293 293 { … … 719 719 * @param uPID PID to search for. 720 720 */ 721 constPVBOXSERVICECTRLTHREAD VBoxServiceControlGetThreadByPID(uint32_t uPID)721 PVBOXSERVICECTRLTHREAD VBoxServiceControlGetThreadByPID(uint32_t uPID) 722 722 { 723 723 PVBOXSERVICECTRLTHREAD pThread = NULL; -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r39300 r39392 329 329 extern int VBoxServiceControlHandleCmdSetInput(uint32_t u32ClientId, uint32_t uNumParms, size_t cbMaxBufSize); 330 330 extern int VBoxServiceControlHandleCmdGetOutput(uint32_t u32ClientId, uint32_t uNumParms); 331 extern constPVBOXSERVICECTRLTHREAD VBoxServiceControlGetThreadByPID(uint32_t uPID);331 extern PVBOXSERVICECTRLTHREAD VBoxServiceControlGetThreadByPID(uint32_t uPID); 332 332 extern void VBoxServiceControlRemoveThread(PVBOXSERVICECTRLTHREAD pThread); 333 333 /* Guest process functions. */
Note:
See TracChangeset
for help on using the changeset viewer.