Changeset 39281 in vbox for trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExecThread.cpp
- Timestamp:
- Nov 11, 2011 6:04:49 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExecThread.cpp
r39279 r39281 43 43 44 44 /* Internal functions. */ 45 int vboxServiceControlExecThreadAssignPID(PVBOXSERVICECTRLTHREAD pData, uint32_t uPID);46 void vboxServiceControlExecThreadFree(PVBOXSERVICECTRLTHREAD pData);47 int vboxServiceControlThreadWaitForShutdown(const PVBOXSERVICECTRLTHREAD pThread);45 static int vboxServiceControlExecThreadAssignPID(PVBOXSERVICECTRLTHREAD pData, uint32_t uPID); 46 static void vboxServiceControlExecThreadFree(PVBOXSERVICECTRLTHREAD pData); 47 static int vboxServiceControlThreadWaitForShutdown(const PVBOXSERVICECTRLTHREAD pThread); 48 48 49 49 /** … … 525 525 /* In any case, regardless of the result, we notify 526 526 * the main guest control to unblock it. */ 527 intrc2 = RTSemEventMultiSignal(pThread->RequestEvent);527 rc2 = RTSemEventMultiSignal(pThread->RequestEvent); 528 528 AssertRC(rc2); 529 529 /* No access to pRequest here anymore -- could be out of scope
Note:
See TracChangeset
for help on using the changeset viewer.