Changeset 76082 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 9, 2018 7:25:00 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127323
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxSDSImpl.h
r76067 r76082 21 21 #include "VirtualBoxBase.h" 22 22 23 ///* Enable the watcher code in debug builds. */ 24 //#ifdef DEBUG 25 //# define WITH_WATCHER 26 //#endif 27 23 28 24 29 class VBoxSDSPerUserData; /* See VirtualBoxSDSImpl.cpp. */ 30 struct VBoxSDSWatcher; /* See VirtualBoxSDSImpl.cpp. */ 25 31 26 32 /** … … 51 57 /** Per user data map (key is SID string). 52 58 * This is an insert-only map! */ 53 UserDataMap_T m_UserDataMap; 54 /** Lock protecting m_UserDataMap.*/ 55 RTCRITSECTRW m_MapCritSect; 59 UserDataMap_T m_UserDataMap; 60 /** Number of registered+watched VBoxSVC processes. */ 61 uint32_t m_cVBoxSvcProcesses; 62 #ifdef WITH_WATCHER 63 /** Number of watcher threads. */ 64 uint32_t m_cWatchers; 65 /** Pointer to an array of watcher pointers. */ 66 VBoxSDSWatcher **m_papWatchers; 67 /** Lock protecting m_papWatchers and associated structures. */ 68 RTCRITSECT m_WatcherCritSect; 69 #endif 70 /** Lock protecting m_UserDataMap . */ 71 RTCRITSECTRW m_MapCritSect; 56 72 57 73 public: … … 101 117 */ 102 118 VBoxSDSPerUserData *i_lookupOrCreatePerUserData(com::Utf8Str const &a_rStrUserSid, com::Utf8Str const &a_rStrUsername); 119 120 #ifdef WITH_WATCHER 121 static DECLCALLBACK(int) i_watcherThreadProc(RTTHREAD hSelf, void *pvUser); 122 bool i_watchIt(VBoxSDSPerUserData *pProcess, HANDLE hProcess, RTPROCESS pid); 123 void i_stopWatching(VBoxSDSPerUserData *pProcess, RTPROCESS pid); 124 void i_shutdownAllWatchers(void); 125 126 void i_decrementClientCount(); 127 void i_incrementClientCount(); 128 #endif 103 129 /** @} */ 104 130 }; 105 131 132 #ifdef WITH_WATCHER 133 void VBoxSDSNotifyClientCount(uint32_t cClients); 134 #endif 106 135 107 136 #endif // !____H_VIRTUALBOXSDSIMPL
Note:
See TracChangeset
for help on using the changeset viewer.