Changeset 19331 in vbox for trunk/src/VBox/Additions
- Timestamp:
- May 4, 2009 3:35:47 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r19321 r19331 374 374 375 375 #ifdef RT_OS_WINDOWS 376 /* Make sure only one instance of VBoxService runs at a time. Create a global mutex for that. 376 /* Make sure only one instance of VBoxService runs at a time. Create a global mutex for that. 377 377 Do not use a global namespace ("Global\\") for mutex name here, will blow up NT4 compatibility! */ 378 378 HANDLE hMutexAppRunning = CreateMutex (NULL, FALSE, VBOXSERVICE_NAME); … … 562 562 #endif 563 563 /** @todo Make the main thread responsive to signal so it can shutdown/restart the threads on non-SIGKILL signals. */ 564 564 565 565 /* 566 566 * Start the service, enter the main threads run loop and stop them again when it returns. … … 577 577 */ 578 578 if (hMutexAppRunning != NULL) 579 { 579 { 580 580 ::CloseHandle(hMutexAppRunning); 581 581 hMutexAppRunning = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.