diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-23 09:04:56 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-23 09:04:56 +0000 |
commit | 5a95b0a043fda62f8ee2cbf8e09e61a7729a9af2 (patch) | |
tree | de07814dc00d8fac5918d1fd83edf413731a4949 | |
parent | ead6e0d4d0d571f9ec715ae81303d66b10d3102c (diff) | |
download | bcm5719-llvm-5a95b0a043fda62f8ee2cbf8e09e61a7729a9af2.tar.gz bcm5719-llvm-5a95b0a043fda62f8ee2cbf8e09e61a7729a9af2.zip |
[lldb-mi] Remove unwanted comment blocks.
Summary:
This removes Authors:, Gotchas:, Changes: and Copyright:.
It leaves a couple of Gotcha: blocks that were not empty.
Reviewers: abidh, ki.stfu, domipheus
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D11452
llvm-svn: 242996
76 files changed, 0 insertions, 359 deletions
diff --git a/lldb/tools/lldb-mi/MICmdArgContext.h b/lldb/tools/lldb-mi/MICmdArgContext.h index cae5cdde0bb..b728cb71166 100644 --- a/lldb/tools/lldb-mi/MICmdArgContext.h +++ b/lldb/tools/lldb-mi/MICmdArgContext.h @@ -16,9 +16,6 @@ // Details: MI common code class. Command arguments and options string. Holds // the context string. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 14/04/2014. -// Changes: None. //-- class CMICmdArgContext { diff --git a/lldb/tools/lldb-mi/MICmdArgSet.h b/lldb/tools/lldb-mi/MICmdArgSet.h index e9e506a6575..2a9a1d29ceb 100644 --- a/lldb/tools/lldb-mi/MICmdArgSet.h +++ b/lldb/tools/lldb-mi/MICmdArgSet.h @@ -30,9 +30,6 @@ class CMICmdArgValBase; // objects on the heap. // It is assumed the arguments to be parsed are read from left to right in // order. The order added to *this container is the order they will parsed. -// Gotchas: None. -// Authors: Illya Rudkin 14/04/2014. -// Changes: None. //-- class CMICmdArgSet : public CMICmnBase { diff --git a/lldb/tools/lldb-mi/MICmdArgValBase.h b/lldb/tools/lldb-mi/MICmdArgValBase.h index dfc69a5b41e..f3c002f56b9 100644 --- a/lldb/tools/lldb-mi/MICmdArgValBase.h +++ b/lldb/tools/lldb-mi/MICmdArgValBase.h @@ -30,9 +30,6 @@ // hardwired to fail and catch arguments or options that presented by // different driver clients. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 14/04/2014. -// Changes: None. //-- class CMICmdArgValBase : public CMICmdArgSet::IArg { @@ -68,9 +65,6 @@ class CMICmdArgValBase : public CMICmdArgSet::IArg //++ ============================================================================ // Details: MI common code class. Templated command argument base class. -// Gotchas: None. -// Authors: Illya Rudkin 14/04/2014. -// Changes: None. //-- template <class T> class CMICmdArgValBaseTemplate : public CMICmdArgValBase { diff --git a/lldb/tools/lldb-mi/MICmdArgValConsume.h b/lldb/tools/lldb-mi/MICmdArgValConsume.h index 7df707d0e06..f4a370107ff 100644 --- a/lldb/tools/lldb-mi/MICmdArgValConsume.h +++ b/lldb/tools/lldb-mi/MICmdArgValConsume.h @@ -29,9 +29,6 @@ class CMICmdArgContext; // a value for the argument but is not the case for *this argument type // object. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 20/05/2014. -// Changes: None. //-- class CMICmdArgValConsume : public CMICmdArgValBaseTemplate<CMIUtilString> { diff --git a/lldb/tools/lldb-mi/MICmdArgValFile.h b/lldb/tools/lldb-mi/MICmdArgValFile.h index 07abc4baa24..056a5b8232a 100644 --- a/lldb/tools/lldb-mi/MICmdArgValFile.h +++ b/lldb/tools/lldb-mi/MICmdArgValFile.h @@ -22,9 +22,6 @@ class CMICmdArgContext; // interpret the options (context) string to find and validate a matching // argument and so extract a value from it . // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 15/04/2014. -// Changes: None. //-- class CMICmdArgValFile : public CMICmdArgValBaseTemplate<CMIUtilString> { diff --git a/lldb/tools/lldb-mi/MICmdArgValListBase.h b/lldb/tools/lldb-mi/MICmdArgValListBase.h index f0135620321..b8fcca5b351 100644 --- a/lldb/tools/lldb-mi/MICmdArgValListBase.h +++ b/lldb/tools/lldb-mi/MICmdArgValListBase.h @@ -31,9 +31,6 @@ class CMICmdArgContext; // container. The option arguments belong to that derived class and will // be deleted that object goes out of scope. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 16/04/2014. -// Changes: None. //-- class CMICmdArgValListBase : public CMICmdArgValBaseTemplate<std::vector<CMICmdArgValBase *>> { diff --git a/lldb/tools/lldb-mi/MICmdArgValListOfN.h b/lldb/tools/lldb-mi/MICmdArgValListOfN.h index 496bc658111..88eebc54c22 100644 --- a/lldb/tools/lldb-mi/MICmdArgValListOfN.h +++ b/lldb/tools/lldb-mi/MICmdArgValListOfN.h @@ -31,9 +31,6 @@ class CMICmdArgContext; // If vbMandatory argument is true it takes on the (...)+ specification // otherwise assumed to be (...)* specification. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 16/04/2014. -// Changes: None. //-- class CMICmdArgValListOfN : public CMICmdArgValListBase { diff --git a/lldb/tools/lldb-mi/MICmdArgValNumber.h b/lldb/tools/lldb-mi/MICmdArgValNumber.h index 58a28b379e3..a465e4ba05e 100644 --- a/lldb/tools/lldb-mi/MICmdArgValNumber.h +++ b/lldb/tools/lldb-mi/MICmdArgValNumber.h @@ -22,9 +22,6 @@ class CMICmdArgContext; // interpret the options (context) string to find and validate a matching // argument and so extract a value from it . // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 14/04/2014. -// Changes: None. //-- class CMICmdArgValNumber : public CMICmdArgValBaseTemplate<MIint64> { diff --git a/lldb/tools/lldb-mi/MICmdArgValOptionLong.h b/lldb/tools/lldb-mi/MICmdArgValOptionLong.h index ac55c47fb7a..caaad6366ef 100644 --- a/lldb/tools/lldb-mi/MICmdArgValOptionLong.h +++ b/lldb/tools/lldb-mi/MICmdArgValOptionLong.h @@ -26,9 +26,6 @@ class CMIUtilString; // created to hold each of those option's values belong to *this argument // object and so are deleted when *this object goes out of scope. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 16/04/2014. -// Changes: None. //-- class CMICmdArgValOptionLong : public CMICmdArgValListBase { diff --git a/lldb/tools/lldb-mi/MICmdArgValOptionShort.h b/lldb/tools/lldb-mi/MICmdArgValOptionShort.h index 9157b37bb8d..442d73be28e 100644 --- a/lldb/tools/lldb-mi/MICmdArgValOptionShort.h +++ b/lldb/tools/lldb-mi/MICmdArgValOptionShort.h @@ -26,9 +26,6 @@ class CMIUtilString; // created to hold each of those option's values belong to *this argument // object and so are deleted when *this object goes out of scope. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 16/04/2014. -// Changes: None. //-- class CMICmdArgValOptionShort : public CMICmdArgValOptionLong { diff --git a/lldb/tools/lldb-mi/MICmdArgValString.h b/lldb/tools/lldb-mi/MICmdArgValString.h index 8b58a0a88dd..4fd4760a294 100644 --- a/lldb/tools/lldb-mi/MICmdArgValString.h +++ b/lldb/tools/lldb-mi/MICmdArgValString.h @@ -22,9 +22,6 @@ class CMICmdArgContext; // interpret the options (context) string to find and validate a matching // argument and so extract a value from it . // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 15/04/2014. -// Changes: None. //-- class CMICmdArgValString : public CMICmdArgValBaseTemplate<CMIUtilString> { diff --git a/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h b/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h index 64c11405e8a..6d262448658 100644 --- a/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h +++ b/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h @@ -23,9 +23,6 @@ class CMICmdArgContext; // argument and so extract a value from it. Thread group looks like // "i1" in the options text. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 15/04/2014. -// Changes: None. //-- class CMICmdArgValThreadGrp : public CMICmdArgValBaseTemplate<MIuint> { diff --git a/lldb/tools/lldb-mi/MICmdBase.h b/lldb/tools/lldb-mi/MICmdBase.h index 3fd4b67af44..2af719f29e8 100644 --- a/lldb/tools/lldb-mi/MICmdBase.h +++ b/lldb/tools/lldb-mi/MICmdBase.h @@ -42,9 +42,6 @@ class CMICmnLLDBDebugSessionInfo; // to factor handling and parsing of different types of arguments // presented to a command. A command will produce an error should it // be presented with arguments or options it does not understand. -// Gotchas: None. -// Authors: Illya Rudkin 18/02/2014. -// Changes: None. //-- class CMICmdBase : public CMICmnBase, public CMICmdInvoker::ICmd, public CMICmdFactory::ICmd { diff --git a/lldb/tools/lldb-mi/MICmdCmd.h b/lldb/tools/lldb-mi/MICmdCmd.h index 26697643c5e..d90527bee50 100644 --- a/lldb/tools/lldb-mi/MICmdCmd.h +++ b/lldb/tools/lldb-mi/MICmdCmd.h @@ -41,9 +41,6 @@ MI commands implemented are: // *this class implements MI command "enable-pretty-printing". // Enables Python base pretty printing. // Ref: http://sourceware.org/gdb/onlinedocs/gdb/GDB_002fMI-Variable-Objects.html -// Gotchas: None. -// Authors: Illya Rudkin 03/03/2014. -// Changes: None. //-- class CMICmdCmdEnablePrettyPrinting : public CMICmdBase { @@ -68,9 +65,6 @@ class CMICmdCmdEnablePrettyPrinting : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "source". -// Gotchas: None. -// Authors: Illya Rudkin 05/03/2014. -// Changes: None. //-- class CMICmdCmdSource : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdBreak.h b/lldb/tools/lldb-mi/MICmdCmdBreak.h index 476ab45762d..298a691b39d 100644 --- a/lldb/tools/lldb-mi/MICmdCmdBreak.h +++ b/lldb/tools/lldb-mi/MICmdCmdBreak.h @@ -35,9 +35,6 @@ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "break-insert". // This command does not follow the MI documentation exactly. -// Gotchas: None. -// Authors: Illya Rudkin 11/03/2014. -// Changes: None. //-- class CMICmdCmdBreakInsert : public CMICmdBase { @@ -104,9 +101,6 @@ class CMICmdCmdBreakInsert : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "break-delete". -// Gotchas: None. -// Authors: Illya Rudkin 11/03/2014. -// Changes: None. //-- class CMICmdCmdBreakDelete : public CMICmdBase { @@ -137,9 +131,6 @@ class CMICmdCmdBreakDelete : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "break-disable". -// Gotchas: None. -// Authors: Illya Rudkin 19/05/2014. -// Changes: None. //-- class CMICmdCmdBreakDisable : public CMICmdBase { @@ -172,9 +163,6 @@ class CMICmdCmdBreakDisable : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "break-enable". -// Gotchas: None. -// Authors: Illya Rudkin 19/05/2014. -// Changes: None. //-- class CMICmdCmdBreakEnable : public CMICmdBase { @@ -207,9 +195,6 @@ class CMICmdCmdBreakEnable : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "break-after". -// Gotchas: None. -// Authors: Illya Rudkin 29/05/2014. -// Changes: None. //-- class CMICmdCmdBreakAfter : public CMICmdBase { @@ -243,9 +228,6 @@ class CMICmdCmdBreakAfter : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "break-condition". -// Gotchas: None. -// Authors: Illya Rudkin 29/05/2014. -// Changes: None. //-- class CMICmdCmdBreakCondition : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdData.h b/lldb/tools/lldb-mi/MICmdCmdData.h index 045dac6bd80..7ae6fd27541 100644 --- a/lldb/tools/lldb-mi/MICmdCmdData.h +++ b/lldb/tools/lldb-mi/MICmdCmdData.h @@ -42,9 +42,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-evaluate-expression". -// Gotchas: None. -// Authors: Illya Rudkin 26/03/2014. -// Changes: None. //-- class CMICmdCmdDataEvaluateExpression : public CMICmdBase { @@ -87,9 +84,6 @@ class CMICmdCmdDataEvaluateExpression : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-disassemble". -// Gotchas: None. -// Authors: Illya Rudkin 19/05/2014. -// Changes: None. //-- class CMICmdCmdDataDisassemble : public CMICmdBase { @@ -124,9 +118,6 @@ class CMICmdCmdDataDisassemble : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-read-memory-bytes". -// Gotchas: None. -// Authors: Illya Rudkin 20/05/2014. -// Changes: None. //-- class CMICmdCmdDataReadMemoryBytes : public CMICmdBase { @@ -163,9 +154,6 @@ class CMICmdCmdDataReadMemoryBytes : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-read-memory". -// Gotchas: None. -// Authors: Illya Rudkin 21/05/2014. -// Changes: None. //-- class CMICmdCmdDataReadMemory : public CMICmdBase { @@ -190,9 +178,6 @@ class CMICmdCmdDataReadMemory : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-list-register-names". -// Gotchas: None. -// Authors: Illya Rudkin 21/05/2014. -// Changes: None. //-- class CMICmdCmdDataListRegisterNames : public CMICmdBase { @@ -228,9 +213,6 @@ class CMICmdCmdDataListRegisterNames : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-list-register-values". -// Gotchas: None. -// Authors: Illya Rudkin 21/05/2014. -// Changes: None. //-- class CMICmdCmdDataListRegisterValues : public CMICmdBase { @@ -269,9 +251,6 @@ class CMICmdCmdDataListRegisterValues : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-list-changed-registers". -// Gotchas: None. -// Authors: Illya Rudkin 22/05/2014. -// Changes: None. //-- class CMICmdCmdDataListRegisterChanged : public CMICmdBase { @@ -296,9 +275,6 @@ class CMICmdCmdDataListRegisterChanged : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-read-memory-bytes". -// Gotchas: None. -// Authors: Illya Rudkin 30/05/2014. -// Changes: None. //-- class CMICmdCmdDataWriteMemoryBytes : public CMICmdBase { @@ -333,9 +309,6 @@ class CMICmdCmdDataWriteMemoryBytes : public CMICmdBase // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "data-read-memory". // Not specified in MI spec but Eclipse gives *this command. -// Gotchas: None. -// Authors: Illya Rudkin 02/05/2014. -// Changes: None. //-- class CMICmdCmdDataWriteMemory : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdEnviro.h b/lldb/tools/lldb-mi/MICmdCmdEnviro.h index 7d5cf98dd4b..b340ed0212c 100644 --- a/lldb/tools/lldb-mi/MICmdCmdEnviro.h +++ b/lldb/tools/lldb-mi/MICmdCmdEnviro.h @@ -28,9 +28,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "environment-cd". -// Gotchas: None. -// Authors: Illya Rudkin 03/03/2014. -// Changes: None. //-- class CMICmdCmdEnvironmentCd : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdExec.h b/lldb/tools/lldb-mi/MICmdCmdExec.h index 94d646fd832..aa960401c3a 100644 --- a/lldb/tools/lldb-mi/MICmdCmdExec.h +++ b/lldb/tools/lldb-mi/MICmdCmdExec.h @@ -38,9 +38,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-run". -// Gotchas: None. -// Authors: Illya Rudkin 07/03/2014. -// Changes: None. //-- class CMICmdCmdExecRun : public CMICmdBase { @@ -69,9 +66,6 @@ class CMICmdCmdExecRun : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-continue". -// Gotchas: None. -// Authors: Illya Rudkin 07/03/2014. -// Changes: None. //-- class CMICmdCmdExecContinue : public CMICmdBase { @@ -100,9 +94,6 @@ class CMICmdCmdExecContinue : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-next". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdExecNext : public CMICmdBase { @@ -134,9 +125,6 @@ class CMICmdCmdExecNext : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-step". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdExecStep : public CMICmdBase { @@ -168,9 +156,6 @@ class CMICmdCmdExecStep : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-next-instruction". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdExecNextInstruction : public CMICmdBase { @@ -202,9 +187,6 @@ class CMICmdCmdExecNextInstruction : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-step-instruction". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdExecStepInstruction : public CMICmdBase { @@ -236,9 +218,6 @@ class CMICmdCmdExecStepInstruction : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-finish". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdExecFinish : public CMICmdBase { @@ -273,8 +252,6 @@ class CMICmdCmdExecFinish : public CMICmdBase // *this class implements MI command "exec-interrupt". // Gotchas: Using Eclipse this command is injected into the command system when a // SIGINT signal is received while running an inferior program. -// Authors: Illya Rudkin 03/06/2014. -// Changes: None. //-- class CMICmdCmdExecInterrupt : public CMICmdBase { @@ -303,9 +280,6 @@ class CMICmdCmdExecInterrupt : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "exec-arguments". -// Gotchas: None. -// Authors: Ilia Kirianovskii 25/11/2014. -// Changes: None. //-- class CMICmdCmdExecArguments : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdFile.h b/lldb/tools/lldb-mi/MICmdCmdFile.h index 2c1b59ca47a..eb53c15243a 100644 --- a/lldb/tools/lldb-mi/MICmdCmdFile.h +++ b/lldb/tools/lldb-mi/MICmdCmdFile.h @@ -31,8 +31,6 @@ // This command does not follow the MI documentation exactly. // Gotchas: This command has additional flags that were not available in GDB MI. // See MIextensions.txt for details. -// Authors: Illya Rudkin 25/02/2014. -// Changes: None. //-- class CMICmdCmdFileExecAndSymbols : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h b/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h index f7516738fc8..98cea6429db 100644 --- a/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h +++ b/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h @@ -37,9 +37,6 @@ // class instantiates a request info command for a matching request. The // design/code of *this class then does not then become bloated. Use a // lightweight version of the current MI command system. -// Gotchas: None. -// Authors: Illya Rudkin 05/06/2014. -// Changes: None. //-- class CMICmdCmdGdbInfo : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdGdbSet.h b/lldb/tools/lldb-mi/MICmdCmdGdbSet.h index 84d21f0557b..ceb3e6d7e73 100644 --- a/lldb/tools/lldb-mi/MICmdCmdGdbSet.h +++ b/lldb/tools/lldb-mi/MICmdCmdGdbSet.h @@ -37,9 +37,6 @@ // class instantiates a request info command for a matching request. The // design/code of *this class then does not then become bloated. Use a // lightweight version of the current MI command system. -// Gotchas: None. -// Authors: Illya Rudkin 03/03/2014. -// Changes: None. //-- class CMICmdCmdGdbSet : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdGdbThread.h b/lldb/tools/lldb-mi/MICmdCmdGdbThread.h index 6a3804a1c89..f489bccefee 100644 --- a/lldb/tools/lldb-mi/MICmdCmdGdbThread.h +++ b/lldb/tools/lldb-mi/MICmdCmdGdbThread.h @@ -26,9 +26,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements GDB command "thread". -// Gotchas: None. -// Authors: Illya Rudkin 25/02/2014. -// Changes: None. //-- class CMICmdCmdGdbThread : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h b/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h index 876554981e3..9dc5a0697dc 100644 --- a/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h +++ b/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h @@ -34,9 +34,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "gdb-exit". -// Gotchas: None. -// Authors: Illya Rudkin 04/03/2014. -// Changes: None. //-- class CMICmdCmdGdbExit : public CMICmdBase { @@ -63,9 +60,6 @@ class CMICmdCmdGdbExit : public CMICmdBase // *this class implements MI command "list-thread-groups". // This command does not follow the MI documentation exactly. // http://sourceware.org/gdb/onlinedocs/gdb/GDB_002fMI-Miscellaneous-Commands.html#GDB_002fMI-Miscellaneous-Commands -// Gotchas: None. -// Authors: Illya Rudkin 06/03/2014. -// Changes: None. //-- class CMICmdCmdListThreadGroups : public CMICmdBase { @@ -106,9 +100,6 @@ class CMICmdCmdListThreadGroups : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "interpreter-exec". -// Gotchas: None. -// Authors: Illya Rudkin 16/05/2014. -// Changes: None. //-- class CMICmdCmdInterpreterExec : public CMICmdBase { @@ -140,9 +131,6 @@ class CMICmdCmdInterpreterExec : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "inferior-tty-set". -// Gotchas: None. -// Authors: Illya Rudkin 22/07/2014. -// Changes: None. //-- class CMICmdCmdInferiorTtySet : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdStack.h b/lldb/tools/lldb-mi/MICmdCmdStack.h index 274415aaafc..2f1360c0edd 100644 --- a/lldb/tools/lldb-mi/MICmdCmdStack.h +++ b/lldb/tools/lldb-mi/MICmdCmdStack.h @@ -33,9 +33,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "stack-info-depth". -// Gotchas: None. -// Authors: Illya Rudkin 21/03/2014. -// Changes: None. //-- class CMICmdCmdStackInfoDepth : public CMICmdBase { @@ -96,9 +93,6 @@ class CMICmdCmdStackInfoFrame : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "stack-list-frames". -// Gotchas: None. -// Authors: Illya Rudkin 21/03/2014. -// Changes: None. //-- class CMICmdCmdStackListFrames : public CMICmdBase { @@ -136,9 +130,6 @@ class CMICmdCmdStackListFrames : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "stack-list-arguments". -// Gotchas: None. -// Authors: Illya Rudkin 24/03/2014. -// Changes: None. //-- class CMICmdCmdStackListArguments : public CMICmdBase { @@ -173,9 +164,6 @@ class CMICmdCmdStackListArguments : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "stack-list-locals". -// Gotchas: None. -// Authors: Illya Rudkin 24/03/2014. -// Changes: None. //-- class CMICmdCmdStackListLocals : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h b/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h index 8dfcfba8ed7..7dc0d3cf6c5 100644 --- a/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h +++ b/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h @@ -27,9 +27,6 @@ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "info-gdb-mi-command". // This command does not follow the MI documentation exactly. -// Gotchas: None. -// Authors: Illya Rudkin 06/05/2014. -// Changes: None. //-- class CMICmdCmdSupportInfoMiCmdQuery : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdSupportList.h b/lldb/tools/lldb-mi/MICmdCmdSupportList.h index a317b079247..cfb599861ce 100644 --- a/lldb/tools/lldb-mi/MICmdCmdSupportList.h +++ b/lldb/tools/lldb-mi/MICmdCmdSupportList.h @@ -27,9 +27,6 @@ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "list-features". // This command does not follow the MI documentation exactly. -// Gotchas: None. -// Authors: Illya Rudkin 03/03/2014. -// Changes: None. //-- class CMICmdCmdSupportListFeatures : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdTarget.h b/lldb/tools/lldb-mi/MICmdCmdTarget.h index 62f77eed47c..733eb25262b 100644 --- a/lldb/tools/lldb-mi/MICmdCmdTarget.h +++ b/lldb/tools/lldb-mi/MICmdCmdTarget.h @@ -29,9 +29,6 @@ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "target-select". // http://sourceware.org/gdb/onlinedocs/gdb/GDB_002fMI-Target-Manipulation.html#GDB_002fMI-Target-Manipulation -// Gotchas: None. -// Authors: Illya Rudkin 05/03/2014. -// Changes: None. //-- class CMICmdCmdTargetSelect : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdThread.h b/lldb/tools/lldb-mi/MICmdCmdThread.h index 7bce823a0b2..63671818a68 100644 --- a/lldb/tools/lldb-mi/MICmdCmdThread.h +++ b/lldb/tools/lldb-mi/MICmdCmdThread.h @@ -28,9 +28,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "thread-info". -// Gotchas: None. -// Authors: Illya Rudkin 07/03/2014. -// Changes: None. //-- class CMICmdCmdThreadInfo : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdTrace.h b/lldb/tools/lldb-mi/MICmdCmdTrace.h index cafe2d89420..5a7821fe613 100644 --- a/lldb/tools/lldb-mi/MICmdCmdTrace.h +++ b/lldb/tools/lldb-mi/MICmdCmdTrace.h @@ -26,9 +26,6 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "trace-status". -// Gotchas: None. -// Authors: Illya Rudkin 07/03/2014. -// Changes: None. //-- class CMICmdCmdTraceStatus : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCmdVar.h b/lldb/tools/lldb-mi/MICmdCmdVar.h index d83fc3ef010..fa2dca48342 100644 --- a/lldb/tools/lldb-mi/MICmdCmdVar.h +++ b/lldb/tools/lldb-mi/MICmdCmdVar.h @@ -41,9 +41,6 @@ class CMICmnLLDBDebugSessionInfoVarObj; //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-create". -// Gotchas: None. -// Authors: Illya Rudkin 24/03/2014. -// Changes: None. //-- class CMICmdCmdVarCreate : public CMICmdBase { @@ -92,9 +89,6 @@ class CMICmdCmdVarCreate : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-update". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdVarUpdate : public CMICmdBase { @@ -135,9 +129,6 @@ class CMICmdCmdVarUpdate : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-delete". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdVarDelete : public CMICmdBase { @@ -167,9 +158,6 @@ class CMICmdCmdVarDelete : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-assign". -// Gotchas: None. -// Authors: Illya Rudkin 25/03/2014. -// Changes: None. //-- class CMICmdCmdVarAssign : public CMICmdBase { @@ -202,9 +190,6 @@ class CMICmdCmdVarAssign : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-set-format". -// Gotchas: None. -// Authors: Illya Rudkin 26/03/2014. -// Changes: None. //-- class CMICmdCmdVarSetFormat : public CMICmdBase { @@ -236,9 +221,6 @@ class CMICmdCmdVarSetFormat : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-list-children". -// Gotchas: None. -// Authors: Illya Rudkin 26/03/2014. -// Changes: None. //-- class CMICmdCmdVarListChildren : public CMICmdBase { @@ -275,9 +257,6 @@ class CMICmdCmdVarListChildren : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-evaluate-expression". -// Gotchas: None. -// Authors: Illya Rudkin 26/03/2014. -// Changes: None. //-- class CMICmdCmdVarEvaluateExpression : public CMICmdBase { @@ -310,9 +289,6 @@ class CMICmdCmdVarEvaluateExpression : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-info-path-expression". -// Gotchas: None. -// Authors: Illya Rudkin 26/03/2014. -// Changes: None. //-- class CMICmdCmdVarInfoPathExpression : public CMICmdBase { @@ -344,9 +320,6 @@ class CMICmdCmdVarInfoPathExpression : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "var-show-attributes". -// Gotchas: None. -// Authors: Illya Rudkin 19/05/2014. -// Changes: None. //-- class CMICmdCmdVarShowAttributes : public CMICmdBase { diff --git a/lldb/tools/lldb-mi/MICmdCommands.h b/lldb/tools/lldb-mi/MICmdCommands.h index a99d09c8057..6f04e0f20ca 100644 --- a/lldb/tools/lldb-mi/MICmdCommands.h +++ b/lldb/tools/lldb-mi/MICmdCommands.h @@ -15,9 +15,6 @@ namespace MICmnCommands //++ ============================================================================ // Details: MI Command are instantiated and registered automatically with the // Command Factory -// Gotchas: None. -// Authors: Illya Rudkin 18/02/2014. -// Changes: None. //-- bool RegisterAll(void); } diff --git a/lldb/tools/lldb-mi/MICmdData.h b/lldb/tools/lldb-mi/MICmdData.h index 305a80d188d..ac0d313811d 100644 --- a/lldb/tools/lldb-mi/MICmdData.h +++ b/lldb/tools/lldb-mi/MICmdData.h @@ -15,9 +15,6 @@ //++ ============================================================================ // Details: MI command metadata. Holds the command's name, MI number and options // as found on stdin. Holds the command's MI output (written to stdout). -// Gotchas: None. -// Authors: Illya Rudkin 18/02/2014. -// Changes: None. //-- struct SMICmdData { diff --git a/lldb/tools/lldb-mi/MICmdFactory.h b/lldb/tools/lldb-mi/MICmdFactory.h index f37b943ec80..e04b127f1bc 100644 --- a/lldb/tools/lldb-mi/MICmdFactory.h +++ b/lldb/tools/lldb-mi/MICmdFactory.h @@ -25,9 +25,6 @@ struct SMICmdData; // MI application understands to interpret. Creates commands objects. // The Command Factory is carried out in the main thread. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 19/02/2014. -// Changes: None. //-- class CMICmdFactory : public CMICmnBase, public MI::ISingleton<CMICmdFactory> { diff --git a/lldb/tools/lldb-mi/MICmdInterpreter.h b/lldb/tools/lldb-mi/MICmdInterpreter.h index e24308484d2..42498e0a81f 100644 --- a/lldb/tools/lldb-mi/MICmdInterpreter.h +++ b/lldb/tools/lldb-mi/MICmdInterpreter.h @@ -23,9 +23,6 @@ class CMICmdFactory; // matches Machine Interface (MI) format and commands defined in the // MI application. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 18/02/2014. -// Changes: None. //-- class CMICmdInterpreter : public CMICmnBase, public MI::ISingleton<CMICmdInterpreter> { diff --git a/lldb/tools/lldb-mi/MICmdInvoker.h b/lldb/tools/lldb-mi/MICmdInvoker.h index 254aabf27f7..fbe5fbb76a1 100644 --- a/lldb/tools/lldb-mi/MICmdInvoker.h +++ b/lldb/tools/lldb-mi/MICmdInvoker.h @@ -36,9 +36,6 @@ class CMICmnStreamStdout; // The Invoker takes ownership of any commands created which means it // is the only object to delete them when a command is finished working. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 19/02/2014. -// Changes: None. //-- class CMICmdInvoker : public CMICmnBase, public CMICmdMgrSetCmdDeleteCallback::ICallback, public MI::ISingleton<CMICmdInvoker> { diff --git a/lldb/tools/lldb-mi/MICmdMgr.h b/lldb/tools/lldb-mi/MICmdMgr.h index 4956d5c3a37..d19cf8a6826 100644 --- a/lldb/tools/lldb-mi/MICmdMgr.h +++ b/lldb/tools/lldb-mi/MICmdMgr.h @@ -30,9 +30,6 @@ class CMICmdBase; // Command Invoker, Command Factory and Command Monitor while independent // units are overseen/managed by *this manager. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 19/02/2014. -// Changes: None. //-- class CMICmdMgr : public CMICmnBase, public MI::ISingleton<CMICmdMgr> { diff --git a/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h b/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h index 47757a2d1f8..ef1e589b153 100644 --- a/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h +++ b/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h @@ -28,9 +28,6 @@ namespace CMICmdMgrSetCmdDeleteCallback // inherit this interface and register interest in command object // deletion. An object deleting a command must not do it itself but call // the Command Manager CmdDelete() function to delete a command object. -// Gotchas: None. -// Authors: Illya Rudkin 21/02/2014. -// Changes: None. //-- class ICallback { @@ -47,9 +44,6 @@ class ICallback // Manager to delete the command object. In so do all other registered // objects get called to about the deletion including the object wanting // to do the delete in the first place. -// Gotchas: None. -// Authors: Illya Rudkin 21/02/2014. -// Changes: None. //-- class CSetClients : public std::set<class ICallback *>, public CMICmnBase { diff --git a/lldb/tools/lldb-mi/MICmnBase.h b/lldb/tools/lldb-mi/MICmnBase.h index d2e2bcdf10d..8c94f4dc2fc 100644 --- a/lldb/tools/lldb-mi/MICmnBase.h +++ b/lldb/tools/lldb-mi/MICmnBase.h @@ -18,9 +18,6 @@ class CMICmnLog; //++ ============================================================================ // Details: MI common code implementation base class. -// Gotchas: None. -// Authors: Illya Rudkin 28/01/2014. -// Changes: None. //-- class CMICmnBase { diff --git a/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h b/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h index dc0de47d3bb..7427a16f0ae 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h +++ b/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h @@ -21,9 +21,6 @@ // *** not // // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 28/02/2014. -// Changes: None. //-- class CMICmnLLDBBroadcaster : public CMICmnBase, public lldb::SBBroadcaster, public MI::ISingleton<CMICmnLLDBBroadcaster> { diff --git a/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h b/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h index 97b1ac8359d..01414e0961a 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h +++ b/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h @@ -38,9 +38,6 @@ class CMICmnMIValueList; // retrieved by the same or other subsequent commands. // It primarily holds LLDB type objects. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 04/03/2014. -// Changes: None. //-- class CMICmnLLDBDebugSessionInfo : public CMICmnBase, public MI::ISingleton<CMICmnLLDBDebugSessionInfo> { diff --git a/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h b/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h index e768c5fdf0c..3d528c2f01e 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h +++ b/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h @@ -19,9 +19,6 @@ //++ ============================================================================ // Details: MI debug session variable object. The static functionality in *this // class manages a map container of *these variable objects. -// Gotchas: None. -// Authors: Illya Rudkin 24/03/2014. -// Changes: None. //-- class CMICmnLLDBDebugSessionInfoVarObj { diff --git a/lldb/tools/lldb-mi/MICmnLLDBDebugger.h b/lldb/tools/lldb-mi/MICmnLLDBDebugger.h index de761122152..62b978e4a05 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBDebugger.h +++ b/lldb/tools/lldb-mi/MICmnLLDBDebugger.h @@ -32,9 +32,6 @@ class CMICmnLLDBDebuggerHandleEvents; // to facilitate their work effort. The instance runs in its own worker // thread. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 26/02/2014. -// Changes: None. //-- class CMICmnLLDBDebugger : public CMICmnBase, public CMIUtilThreadActiveObjBase, public MI::ISingleton<CMICmnLLDBDebugger> { diff --git a/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h b/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h index 1abb5201297..a6d523d28da 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h +++ b/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h @@ -26,9 +26,6 @@ class CMICmnMIOutOfBandRecord; // MI Out-of-band records from the information inside the event object. // These records are then pushed to stdout. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 02/03/2014. -// Changes: None. //-- class CMICmnLLDBDebuggerHandleEvents : public CMICmnBase, public MI::ISingleton<CMICmnLLDBDebuggerHandleEvents> { diff --git a/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h b/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h index c9cd3a9f995..2ae3acf3d7e 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h +++ b/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h @@ -21,9 +21,6 @@ class CMIUtilString; //++ ============================================================================ // Details: MI proxy wrapper class to lldb::SBValue. The class provides functionality // to assist in the use of SBValue's particular function usage. -// Gotchas: None. -// Authors: Illya Rudkin 03/04/2014. -// Changes: None. //-- class CMICmnLLDBProxySBValue { diff --git a/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h b/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h index 8bb6783a2a3..522ed304f5e 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h +++ b/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h @@ -22,9 +22,6 @@ class CMIUtilString; //++ ============================================================================ // Details: Utility helper class to lldb::SBValue. Using a lldb::SBValue extract // value object information to help form verbose debug information. -// Gotchas: None. -// Authors: Illya Rudkin 08/07/2014. -// Changes: None. //-- class CMICmnLLDBUtilSBValue { diff --git a/lldb/tools/lldb-mi/MICmnLog.h b/lldb/tools/lldb-mi/MICmnLog.h index f0ae534e840..e1c6d85e674 100644 --- a/lldb/tools/lldb-mi/MICmnLog.h +++ b/lldb/tools/lldb-mi/MICmnLog.h @@ -26,9 +26,6 @@ // *this logs initialization so it will always have a file log for the // application. // Singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 01/02/2012. -// Changes: None. //-- class CMICmnLog : public MI::ISingleton<CMICmnLog> { diff --git a/lldb/tools/lldb-mi/MICmnLogMediumFile.h b/lldb/tools/lldb-mi/MICmnLogMediumFile.h index b79baf18488..55d0945efcb 100644 --- a/lldb/tools/lldb-mi/MICmnLogMediumFile.h +++ b/lldb/tools/lldb-mi/MICmnLogMediumFile.h @@ -23,9 +23,6 @@ // which the Logger when given data to write to registered medium comes // *this medium. // Singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 30/01/2014. -// Changes: None. //-- class CMICmnLogMediumFile : public CMICmnBase, public CMICmnLog::IMedium { diff --git a/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h b/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h index c61ef339233..f53c5ce1008 100644 --- a/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h +++ b/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h @@ -37,9 +37,6 @@ // // More information see: // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html// -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIOutOfBandRecord : public CMICmnBase { diff --git a/lldb/tools/lldb-mi/MICmnMIResultRecord.h b/lldb/tools/lldb-mi/MICmnMIResultRecord.h index bf95c8b5892..4408324a370 100644 --- a/lldb/tools/lldb-mi/MICmnMIResultRecord.h +++ b/lldb/tools/lldb-mi/MICmnMIResultRecord.h @@ -36,9 +36,6 @@ // be returned. // More information see: // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIResultRecord : public CMICmnBase { diff --git a/lldb/tools/lldb-mi/MICmnMIValue.h b/lldb/tools/lldb-mi/MICmnMIValue.h index 6a372e60014..8bd52853d9f 100644 --- a/lldb/tools/lldb-mi/MICmnMIValue.h +++ b/lldb/tools/lldb-mi/MICmnMIValue.h @@ -28,9 +28,6 @@ // list ==> "[]" | "[" value ( "," value )* "]" | "[" result ( "," result )* "]" // More information see: // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIValue : public CMICmnBase { diff --git a/lldb/tools/lldb-mi/MICmnMIValueConst.h b/lldb/tools/lldb-mi/MICmnMIValueConst.h index 40361943891..b7fedbf1ae6 100644 --- a/lldb/tools/lldb-mi/MICmnMIValueConst.h +++ b/lldb/tools/lldb-mi/MICmnMIValueConst.h @@ -30,10 +30,6 @@ // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html // // The text formed in *this Result class is stripped of any '\n' characters. -// -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIValueConst : public CMICmnMIValue { diff --git a/lldb/tools/lldb-mi/MICmnMIValueList.h b/lldb/tools/lldb-mi/MICmnMIValueList.h index a5e27bc07f4..9b754482447 100644 --- a/lldb/tools/lldb-mi/MICmnMIValueList.h +++ b/lldb/tools/lldb-mi/MICmnMIValueList.h @@ -29,9 +29,6 @@ // list ==> "[]" | "[" value ( "," value )* "]" | "[" result ( "," result )* "]" // More information see: // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIValueList : public CMICmnMIValue { diff --git a/lldb/tools/lldb-mi/MICmnMIValueResult.h b/lldb/tools/lldb-mi/MICmnMIValueResult.h index 1abf78caec1..16f84e8bb2d 100644 --- a/lldb/tools/lldb-mi/MICmnMIValueResult.h +++ b/lldb/tools/lldb-mi/MICmnMIValueResult.h @@ -28,9 +28,6 @@ // list ==> "[]" | "[" value ( "," value )* "]" | "[" result ( "," result )* "]" // More information see: // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIValueResult : public CMICmnMIValue { diff --git a/lldb/tools/lldb-mi/MICmnMIValueTuple.h b/lldb/tools/lldb-mi/MICmnMIValueTuple.h index b0f2a04fe6e..881e133a7e8 100644 --- a/lldb/tools/lldb-mi/MICmnMIValueTuple.h +++ b/lldb/tools/lldb-mi/MICmnMIValueTuple.h @@ -30,9 +30,6 @@ // list ==> "[]" | "[" value ( "," value )* "]" | "[" result ( "," result )* "]" // More information see: // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIValueTuple : public CMICmnMIValue { diff --git a/lldb/tools/lldb-mi/MICmnResources.h b/lldb/tools/lldb-mi/MICmnResources.h index 633eba8de9e..e7438601c21 100644 --- a/lldb/tools/lldb-mi/MICmnResources.h +++ b/lldb/tools/lldb-mi/MICmnResources.h @@ -279,9 +279,6 @@ enum // Details: MI common code implementation class. Handle application resources // and locality. // Singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 29/01/2014. -// Changes: None. //-- class CMICmnResources : public CMICmnBase, public MI::ISingleton<CMICmnResources> { diff --git a/lldb/tools/lldb-mi/MICmnStreamStderr.h b/lldb/tools/lldb-mi/MICmnStreamStderr.h index afceada9ff2..5a726d890bc 100644 --- a/lldb/tools/lldb-mi/MICmnStreamStderr.h +++ b/lldb/tools/lldb-mi/MICmnStreamStderr.h @@ -20,9 +20,6 @@ // CMICmnStreamStderr sets up and tears downs stderr for the driver. // // Singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 19/03/2014. -// Changes: None. //-- class CMICmnStreamStderr : public CMICmnBase, public MI::ISingleton<CMICmnStreamStderr> { diff --git a/lldb/tools/lldb-mi/MICmnStreamStdin.h b/lldb/tools/lldb-mi/MICmnStreamStdin.h index 9536d8ad825..dc4755f686b 100644 --- a/lldb/tools/lldb-mi/MICmnStreamStdin.h +++ b/lldb/tools/lldb-mi/MICmnStreamStdin.h @@ -21,9 +21,6 @@ // provide can receive callbacks when a new line of data is received. // Each line is determined by a carriage return. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 10/02/2014. -// Changes: Factored out OS specific handling of reading stdin - IOR 16/06/2014. //-- class CMICmnStreamStdin : public CMICmnBase, public MI::ISingleton<CMICmnStreamStdin> { diff --git a/lldb/tools/lldb-mi/MICmnStreamStdout.h b/lldb/tools/lldb-mi/MICmnStreamStdout.h index 664faae863d..76f86e708fa 100644 --- a/lldb/tools/lldb-mi/MICmnStreamStdout.h +++ b/lldb/tools/lldb-mi/MICmnStreamStdout.h @@ -20,9 +20,6 @@ // CMICmnStreamStdout sets up and tears downs stdout for the driver. // // Singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 12/02/2014. -// Changes: None. //-- class CMICmnStreamStdout : public CMICmnBase, public MI::ISingleton<CMICmnStreamStdout> { diff --git a/lldb/tools/lldb-mi/MICmnThreadMgrStd.h b/lldb/tools/lldb-mi/MICmnThreadMgrStd.h index fef999b2a7b..3b7adbed89b 100644 --- a/lldb/tools/lldb-mi/MICmnThreadMgrStd.h +++ b/lldb/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> { diff --git a/lldb/tools/lldb-mi/MIDriver.h b/lldb/tools/lldb-mi/MIDriver.h index 55c662494e2..26317f062e5 100644 --- a/lldb/tools/lldb-mi/MIDriver.h +++ b/lldb/tools/lldb-mi/MIDriver.h @@ -32,9 +32,6 @@ class CMICmnStreamStdout; // work depending on the one selected to work. A driver can if not able // to handle an instruction or 'command' can pass that command onto // another driver object registered with the Driver Manager. -// Gotchas: None. -// Authors: Illya Rudkin 29/01/2014. -// Changes: None. //-- class CMIDriver : public CMICmnBase, public CMIDriverMgr::IDriver, diff --git a/lldb/tools/lldb-mi/MIDriverBase.h b/lldb/tools/lldb-mi/MIDriverBase.h index ad242116b5f..11690440fe7 100644 --- a/lldb/tools/lldb-mi/MIDriverBase.h +++ b/lldb/tools/lldb-mi/MIDriverBase.h @@ -31,9 +31,6 @@ class SBBroadcaster; // CDriverMgr to manage either (any) driver to be operated on. // Each driver instance (the CMIDriver, LLDB::Driver) has its own // LLDB::SBDebugger object. -// Gotchas: None. -// Authors: Illya Rudkin 30/01/2014. -// Changes: None. //-- class CMIDriverBase { diff --git a/lldb/tools/lldb-mi/MIDriverMgr.h b/lldb/tools/lldb-mi/MIDriverMgr.h index c84ef04c75c..09dc05eb767 100644 --- a/lldb/tools/lldb-mi/MIDriverMgr.h +++ b/lldb/tools/lldb-mi/MIDriverMgr.h @@ -39,9 +39,6 @@ // Each driver instance (the CMIDriver, LLDB::Driver) has its own // LLDB::SBDebugger. // Singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 28/02/2014. -// Changes: None. //-- class CMIDriverMgr : public CMICmnBase, public MI::ISingleton<CMIDriverMgr> { diff --git a/lldb/tools/lldb-mi/MIUtilDateTimeStd.h b/lldb/tools/lldb-mi/MIUtilDateTimeStd.h index 4bc5e581595..43915687aa8 100644 --- a/lldb/tools/lldb-mi/MIUtilDateTimeStd.h +++ b/lldb/tools/lldb-mi/MIUtilDateTimeStd.h @@ -18,9 +18,6 @@ //++ ============================================================================ // Details: MI common code utility class. Used to retrieve system local date // time. -// Gotchas: None. -// Authors: Illya Rudkin 16/07/2014. -// Changes: None. //-- class CMIUtilDateTimeStd { diff --git a/lldb/tools/lldb-mi/MIUtilDebug.h b/lldb/tools/lldb-mi/MIUtilDebug.h index b309c5dc287..538c74a2521 100644 --- a/lldb/tools/lldb-mi/MIUtilDebug.h +++ b/lldb/tools/lldb-mi/MIUtilDebug.h @@ -19,9 +19,6 @@ class CMICmnLog; //++ ============================================================================ // Details: MI debugging aid utility class. -// Gotchas: None. -// Authors: -// Changes: None. //-- class CMIUtilDebug { @@ -48,9 +45,6 @@ class CMIUtilDebug // the functions you wish to build up a trace off. // Use preprocessor definition MI_USE_DEBUG_TRACE_FN to turn off or on // tracing code. -// Gotchas: None. -// Authors: Illya Rudkin 07/03/2014. -// Changes: None. //-- class CMIUtilDebugFnTrace { diff --git a/lldb/tools/lldb-mi/MIUtilFileStd.h b/lldb/tools/lldb-mi/MIUtilFileStd.h index 5a223489776..468c9b25e97 100644 --- a/lldb/tools/lldb-mi/MIUtilFileStd.h +++ b/lldb/tools/lldb-mi/MIUtilFileStd.h @@ -15,9 +15,6 @@ //++ ============================================================================ // Details: MI common code utility class. File handling. -// Gotchas: None. -// Authors: Aidan Dodds 10/03/2014. -// Changes: None. //-- class CMIUtilFileStd : public CMICmnBase { diff --git a/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h b/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h index c77f0b94668..4f149713407 100644 --- a/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h +++ b/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h @@ -22,9 +22,6 @@ // Details: MI common code utility class. Map type container that hold general // object types (by being a variant wrapper) // objects by ID. -// Gotchas: None. -// Authors: Illya Rudkin 19/06/2014. -// Changes: None. //-- class CMIUtilMapIdToVariant : public CMICmnBase { diff --git a/lldb/tools/lldb-mi/MIUtilSingletonBase.h b/lldb/tools/lldb-mi/MIUtilSingletonBase.h index 04472d0a7a1..043b7b3fe12 100644 --- a/lldb/tools/lldb-mi/MIUtilSingletonBase.h +++ b/lldb/tools/lldb-mi/MIUtilSingletonBase.h @@ -29,8 +29,6 @@ namespace MI //++ ============================================================================ // Details: Base class for the singleton pattern. // Gotchas: Derived class must specify MI::ISingleton<> as a friend class. -// Authors: Aidan Dodds 17/03/2014. -// Changes: None. //-- template <typename T> class ISingleton { diff --git a/lldb/tools/lldb-mi/MIUtilSingletonHelper.h b/lldb/tools/lldb-mi/MIUtilSingletonHelper.h index 19cc3a92e82..2b9f4c41665 100644 --- a/lldb/tools/lldb-mi/MIUtilSingletonHelper.h +++ b/lldb/tools/lldb-mi/MIUtilSingletonHelper.h @@ -6,9 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// -// Copyright: None. -//-- #pragma once @@ -29,8 +26,6 @@ namespace MI // vwrErrMsg - (W) MI driver module initialise error description on failure. // Return: MIstatus::success - Functional succeeded. // MIstatus::failure - Functional failed. -// Authors: Aidan Dodds 17/03/2014. -// Changes: None. //-- template <typename T> bool @@ -58,8 +53,6 @@ ModuleInit(const MIint vErrorResrcId, bool &vwrbOk, CMIUtilString &vwrErrMsg) // failure. // Return: True - Module shutdown succeeded. // False - Module shutdown failed. -// Authors: Aidan Dodds 17/03/2014. -// Changes: None. //-- template <typename T> bool diff --git a/lldb/tools/lldb-mi/MIUtilString.h b/lldb/tools/lldb-mi/MIUtilString.h index 7b188edefef..a562f4decb7 100644 --- a/lldb/tools/lldb-mi/MIUtilString.h +++ b/lldb/tools/lldb-mi/MIUtilString.h @@ -20,9 +20,6 @@ //++ ============================================================================ // Details: MI common code utility class. Used to help handle text. // Derived from std::string -// Gotchas: None. -// Authors: Illya Rudkin 02/02/2014. -// Changes: None. //-- class CMIUtilString : public std::string { diff --git a/lldb/tools/lldb-mi/MIUtilSystemLinux.h b/lldb/tools/lldb-mi/MIUtilSystemLinux.h index 975714bd6f4..fd7f794cd78 100644 --- a/lldb/tools/lldb-mi/MIUtilSystemLinux.h +++ b/lldb/tools/lldb-mi/MIUtilSystemLinux.h @@ -19,9 +19,6 @@ // about the current system or user. // *** If you change, remove or add functionality it must be replicated // *** for the all platforms supported; Windows, OSX, LINUX -// Gotchas: None. -// Authors: Illya Rudkin 29/01/2014. -// Changes: None. //-- class CMIUtilSystemLinux { diff --git a/lldb/tools/lldb-mi/MIUtilSystemOsx.h b/lldb/tools/lldb-mi/MIUtilSystemOsx.h index b30e258626b..a1f3efa0066 100644 --- a/lldb/tools/lldb-mi/MIUtilSystemOsx.h +++ b/lldb/tools/lldb-mi/MIUtilSystemOsx.h @@ -19,9 +19,6 @@ // about the current system or user. // *** If you change, remove or add functionality it must be replicated // *** for the all platforms supported; Windows, OSX, LINUX -// Gotchas: None. -// Authors: Illya Rudkin 29/01/2014. -// Changes: None. //-- class CMIUtilSystemOsx { diff --git a/lldb/tools/lldb-mi/MIUtilSystemWindows.h b/lldb/tools/lldb-mi/MIUtilSystemWindows.h index 696c2b286df..a4bfbf170ca 100644 --- a/lldb/tools/lldb-mi/MIUtilSystemWindows.h +++ b/lldb/tools/lldb-mi/MIUtilSystemWindows.h @@ -18,9 +18,6 @@ // about the current system or user. // *** If you change, remove or add functionality it must be replicated // *** for the all platforms supported; Windows, OSX, LINUX -// Gotchas: None. -// Authors: Illya Rudkin 29/01/2014. -// Changes: None. //-- class CMIUtilSystemWindows { diff --git a/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp b/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp index 96f53ff65bf..da98e81c6db 100644 --- a/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp +++ b/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp @@ -6,8 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// Copyright: None. -//-- // Third Party Headers: #include <assert.h> diff --git a/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h b/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h index c95de3fba9a..33e0af9e673 100644 --- a/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h +++ b/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h @@ -6,9 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// -// Copyright: None. -//-- #pragma once @@ -26,9 +23,6 @@ //++ ============================================================================ // Details: MI common code utility class. Handle thread mutual exclusion. // Embed Mutexes in your Active Object and then use them through Locks. -// Gotchas: None. -// Authors: Aidan Dodds 10/03/2014. -// Changes: None. //-- class CMIUtilThreadMutex { @@ -55,9 +49,6 @@ class CMIUtilThreadMutex //++ ============================================================================ // Details: MI common code utility class. Thread object. -// Gotchas: None. -// Authors: Aidan Dodds 10/03/2014. -// Changes: None. //-- class CMIUtilThread { @@ -92,9 +83,6 @@ class CMIUtilThread //++ ============================================================================ // Details: MI common code utility class. Base class for a worker thread active // object. Runs an 'captive thread'. -// Gotchas: None. -// Authors: Aidan Dodds 10/03/2014.. -// Changes: None. //-- class CMIUtilThreadActiveObjBase { @@ -148,9 +136,6 @@ class CMIUtilThreadActiveObjBase // Details: MI common code utility class. Handle thread resource locking. // Put Locks inside all the methods of your Active Object that access // data shared with the captive thread. -// Gotchas: None. -// Authors: Aidan Dodds 10/03/2014. -// Changes: None. //-- class CMIUtilThreadLock { diff --git a/lldb/tools/lldb-mi/MIUtilVariant.cpp b/lldb/tools/lldb-mi/MIUtilVariant.cpp index dff8072aa10..ea02718afed 100644 --- a/lldb/tools/lldb-mi/MIUtilVariant.cpp +++ b/lldb/tools/lldb-mi/MIUtilVariant.cpp @@ -6,8 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// Copyright: None. -//-- // In-house headers: #include "MIUtilVariant.h" diff --git a/lldb/tools/lldb-mi/MIUtilVariant.h b/lldb/tools/lldb-mi/MIUtilVariant.h index a6c3ba43903..8dffb22fa3a 100644 --- a/lldb/tools/lldb-mi/MIUtilVariant.h +++ b/lldb/tools/lldb-mi/MIUtilVariant.h @@ -6,8 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// Copyright: None. -//-- #pragma once @@ -20,9 +18,6 @@ // data object specified is made and stored in *this wrapper. When the // *this object is destroyed the data object hold within calls its // destructor should it have one. -// Gotchas: None. -// Authors: Illya Rudkin 18/06/2014. -// Changes: None. //-- class CMIUtilVariant { |