VirtualBox

Changeset 76082 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
Dec 9, 2018 7:25:00 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
127323
Message:

VBoxSDS: Implemented (disabled) monitoring client (VBoxSVC) process termination to bypass the 5 min denalty for abended clients. Really handy for development. bugref:3300

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/VirtualBoxSDSImpl.h

    r76067 r76082  
    2121#include "VirtualBoxBase.h"
    2222
     23///* Enable the watcher code in debug builds. */
     24//#ifdef DEBUG
     25//# define WITH_WATCHER
     26//#endif
     27
    2328
    2429class VBoxSDSPerUserData; /* See VirtualBoxSDSImpl.cpp. */
     30struct VBoxSDSWatcher;    /* See VirtualBoxSDSImpl.cpp. */
    2531
    2632/**
     
    5157    /** Per user data map (key is SID string).
    5258     * 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;
    5672
    5773public:
     
    101117     */
    102118    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
    103129    /** @} */
    104130};
    105131
     132#ifdef WITH_WATCHER
     133void VBoxSDSNotifyClientCount(uint32_t cClients);
     134#endif
    106135
    107136#endif // !____H_VIRTUALBOXSDSIMPL
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette