Changeset 90211 in vbox
- Timestamp:
- Jul 15, 2021 11:53:07 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r90053 r90211 120 120 VBClLogFatalError("Failure while acquiring the global critical section, rc=%Rrc\n", rc); 121 121 122 /* Try to gracefuly terminate a service. Service needs 123 * to be stopped first and then terminated. */ 124 if (g_Service.pDesc) 125 { 126 if (g_Service.pDesc->pfnStop) 127 g_Service.pDesc->pfnStop(); 128 129 if (g_Service.pDesc->pfnTerm) 130 g_Service.pDesc->pfnTerm(); 122 /* Ask service to stop. */ 123 if (g_Service.pDesc && 124 g_Service.pDesc->pfnStop) 125 { 126 ASMAtomicWriteBool(&g_Service.fShutdown, true); 127 g_Service.pDesc->pfnStop(); 128 131 129 } 132 130
Note:
See TracChangeset
for help on using the changeset viewer.