diff options
Diffstat (limited to 'tools/lldb-mi/MICmnThreadMgrStd.h')
-rw-r--r-- | tools/lldb-mi/MICmnThreadMgrStd.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/tools/lldb-mi/MICmnThreadMgrStd.h b/tools/lldb-mi/MICmnThreadMgrStd.h index fef999b2a7b1c..fc0013f994986 100644 --- a/tools/lldb-mi/MICmnThreadMgrStd.h +++ b/tools/lldb-mi/MICmnThreadMgrStd.h @@ -25,9 +25,6 @@ // This manager will stop and delete all threads on *this manager's // shutdown. // Singleton class. -// Gotchas: None. -// Authors: Aidan Dodds 12/03/2014. -// Changes: None. //-- class CMICmnThreadMgrStd : public CMICmnBase, public MI::ISingleton<CMICmnThreadMgrStd> { @@ -35,10 +32,10 @@ class CMICmnThreadMgrStd : public CMICmnBase, public MI::ISingleton<CMICmnThread // Methods: public: - bool Initialize(void) override; - bool Shutdown(void) override; + bool Initialize() override; + bool Shutdown() override; bool - ThreadAllTerminate(void); // Ask all threads to stop (caution) + ThreadAllTerminate(); // Ask all threads to stop (caution) template <typename T> // Ask the thread manager to start and stop threads on our behalf bool ThreadStart(T &vrwObject); @@ -48,7 +45,7 @@ class CMICmnThreadMgrStd : public CMICmnBase, public MI::ISingleton<CMICmnThread // Methods: private: - /* ctor */ CMICmnThreadMgrStd(void); + /* ctor */ CMICmnThreadMgrStd(); /* ctor */ CMICmnThreadMgrStd(const CMICmnThreadMgrStd &); void operator=(const CMICmnThreadMgrStd &); // @@ -58,7 +55,7 @@ class CMICmnThreadMgrStd : public CMICmnBase, public MI::ISingleton<CMICmnThread // Overridden: private: // From CMICmnBase - /* dtor */ ~CMICmnThreadMgrStd(void) override; + /* dtor */ ~CMICmnThreadMgrStd() override; // Attributes: private: |