Index: tools/lldb-mi/MICmdArgContext.h =================================================================== --- tools/lldb-mi/MICmdArgContext.h +++ 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 { Index: tools/lldb-mi/MICmdArgSet.h =================================================================== --- tools/lldb-mi/MICmdArgSet.h +++ tools/lldb-mi/MICmdArgSet.h @@ -30,9 +30,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValBase.h =================================================================== --- tools/lldb-mi/MICmdArgValBase.h +++ 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 @@ //++ ============================================================================ // Details: MI common code class. Templated command argument base class. -// Gotchas: None. -// Authors: Illya Rudkin 14/04/2014. -// Changes: None. //-- template class CMICmdArgValBaseTemplate : public CMICmdArgValBase { Index: tools/lldb-mi/MICmdArgValConsume.h =================================================================== --- tools/lldb-mi/MICmdArgValConsume.h +++ tools/lldb-mi/MICmdArgValConsume.h @@ -29,9 +29,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValFile.h =================================================================== --- tools/lldb-mi/MICmdArgValFile.h +++ tools/lldb-mi/MICmdArgValFile.h @@ -22,9 +22,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValListBase.h =================================================================== --- tools/lldb-mi/MICmdArgValListBase.h +++ tools/lldb-mi/MICmdArgValListBase.h @@ -31,9 +31,6 @@ // 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> { Index: tools/lldb-mi/MICmdArgValListOfN.h =================================================================== --- tools/lldb-mi/MICmdArgValListOfN.h +++ tools/lldb-mi/MICmdArgValListOfN.h @@ -31,9 +31,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValNumber.h =================================================================== --- tools/lldb-mi/MICmdArgValNumber.h +++ tools/lldb-mi/MICmdArgValNumber.h @@ -22,9 +22,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValOptionLong.h =================================================================== --- tools/lldb-mi/MICmdArgValOptionLong.h +++ tools/lldb-mi/MICmdArgValOptionLong.h @@ -26,9 +26,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValOptionShort.h =================================================================== --- tools/lldb-mi/MICmdArgValOptionShort.h +++ tools/lldb-mi/MICmdArgValOptionShort.h @@ -26,9 +26,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValString.h =================================================================== --- tools/lldb-mi/MICmdArgValString.h +++ tools/lldb-mi/MICmdArgValString.h @@ -22,9 +22,6 @@ // 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 { Index: tools/lldb-mi/MICmdArgValThreadGrp.h =================================================================== --- tools/lldb-mi/MICmdArgValThreadGrp.h +++ tools/lldb-mi/MICmdArgValThreadGrp.h @@ -23,9 +23,6 @@ // 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 { Index: tools/lldb-mi/MICmdBase.h =================================================================== --- tools/lldb-mi/MICmdBase.h +++ tools/lldb-mi/MICmdBase.h @@ -42,9 +42,6 @@ // 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 { Index: tools/lldb-mi/MICmdCmd.h =================================================================== --- tools/lldb-mi/MICmdCmd.h +++ tools/lldb-mi/MICmdCmd.h @@ -41,9 +41,6 @@ // *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 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmdCmdBreak.h =================================================================== --- tools/lldb-mi/MICmdCmdBreak.h +++ 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmdCmdData.h =================================================================== --- tools/lldb-mi/MICmdCmdData.h +++ 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ // 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 { Index: tools/lldb-mi/MICmdCmdEnviro.h =================================================================== --- tools/lldb-mi/MICmdCmdEnviro.h +++ 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 { Index: tools/lldb-mi/MICmdCmdExec.h =================================================================== --- tools/lldb-mi/MICmdCmdExec.h +++ 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ // *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 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmdCmdFile.h =================================================================== --- tools/lldb-mi/MICmdCmdFile.h +++ 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 { Index: tools/lldb-mi/MICmdCmdGdbInfo.h =================================================================== --- tools/lldb-mi/MICmdCmdGdbInfo.h +++ 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 { Index: tools/lldb-mi/MICmdCmdGdbSet.h =================================================================== --- tools/lldb-mi/MICmdCmdGdbSet.h +++ 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 { Index: tools/lldb-mi/MICmdCmdGdbThread.h =================================================================== --- tools/lldb-mi/MICmdCmdGdbThread.h +++ 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 { Index: tools/lldb-mi/MICmdCmdMiscellanous.h =================================================================== --- tools/lldb-mi/MICmdCmdMiscellanous.h +++ 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 @@ // *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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmdCmdStack.h =================================================================== --- tools/lldb-mi/MICmdCmdStack.h +++ 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmdCmdSupportInfo.h =================================================================== --- tools/lldb-mi/MICmdCmdSupportInfo.h +++ 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 { Index: tools/lldb-mi/MICmdCmdSupportList.h =================================================================== --- tools/lldb-mi/MICmdCmdSupportList.h +++ 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 { Index: tools/lldb-mi/MICmdCmdTarget.h =================================================================== --- tools/lldb-mi/MICmdCmdTarget.h +++ 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 { Index: tools/lldb-mi/MICmdCmdThread.h =================================================================== --- tools/lldb-mi/MICmdCmdThread.h +++ 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 { Index: tools/lldb-mi/MICmdCmdTrace.h =================================================================== --- tools/lldb-mi/MICmdCmdTrace.h +++ 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 { Index: tools/lldb-mi/MICmdCmdVar.h =================================================================== --- tools/lldb-mi/MICmdCmdVar.h +++ tools/lldb-mi/MICmdCmdVar.h @@ -41,9 +41,6 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmdCommands.h =================================================================== --- tools/lldb-mi/MICmdCommands.h +++ tools/lldb-mi/MICmdCommands.h @@ -15,9 +15,6 @@ //++ ============================================================================ // 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); } Index: tools/lldb-mi/MICmdData.h =================================================================== --- tools/lldb-mi/MICmdData.h +++ 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 { Index: tools/lldb-mi/MICmdFactory.h =================================================================== --- tools/lldb-mi/MICmdFactory.h +++ tools/lldb-mi/MICmdFactory.h @@ -25,9 +25,6 @@ // 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 { Index: tools/lldb-mi/MICmdInterpreter.h =================================================================== --- tools/lldb-mi/MICmdInterpreter.h +++ tools/lldb-mi/MICmdInterpreter.h @@ -23,9 +23,6 @@ // 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 { Index: tools/lldb-mi/MICmdInvoker.h =================================================================== --- tools/lldb-mi/MICmdInvoker.h +++ tools/lldb-mi/MICmdInvoker.h @@ -36,9 +36,6 @@ // 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 { Index: tools/lldb-mi/MICmdMgr.h =================================================================== --- tools/lldb-mi/MICmdMgr.h +++ tools/lldb-mi/MICmdMgr.h @@ -30,9 +30,6 @@ // 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 { Index: tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h =================================================================== --- tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h +++ tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h @@ -28,9 +28,6 @@ // 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 @@ // 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, public CMICmnBase { Index: tools/lldb-mi/MICmnBase.h =================================================================== --- tools/lldb-mi/MICmnBase.h +++ tools/lldb-mi/MICmnBase.h @@ -18,9 +18,6 @@ //++ ============================================================================ // Details: MI common code implementation base class. -// Gotchas: None. -// Authors: Illya Rudkin 28/01/2014. -// Changes: None. //-- class CMICmnBase { Index: tools/lldb-mi/MICmnLLDBBroadcaster.h =================================================================== --- tools/lldb-mi/MICmnLLDBBroadcaster.h +++ 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 { Index: tools/lldb-mi/MICmnLLDBDebugSessionInfo.h =================================================================== --- tools/lldb-mi/MICmnLLDBDebugSessionInfo.h +++ tools/lldb-mi/MICmnLLDBDebugSessionInfo.h @@ -38,9 +38,6 @@ // 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 { Index: tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h =================================================================== --- tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h +++ 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 { Index: tools/lldb-mi/MICmnLLDBDebugger.h =================================================================== --- tools/lldb-mi/MICmnLLDBDebugger.h +++ tools/lldb-mi/MICmnLLDBDebugger.h @@ -32,9 +32,6 @@ // 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 { Index: tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h =================================================================== --- tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h +++ tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h @@ -26,9 +26,6 @@ // 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 { Index: tools/lldb-mi/MICmnLLDBProxySBValue.h =================================================================== --- tools/lldb-mi/MICmnLLDBProxySBValue.h +++ tools/lldb-mi/MICmnLLDBProxySBValue.h @@ -21,9 +21,6 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmnLLDBUtilSBValue.h =================================================================== --- tools/lldb-mi/MICmnLLDBUtilSBValue.h +++ tools/lldb-mi/MICmnLLDBUtilSBValue.h @@ -22,9 +22,6 @@ //++ ============================================================================ // 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 { Index: tools/lldb-mi/MICmnLog.h =================================================================== --- tools/lldb-mi/MICmnLog.h +++ 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 { Index: tools/lldb-mi/MICmnLogMediumFile.h =================================================================== --- tools/lldb-mi/MICmnLogMediumFile.h +++ 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 { Index: tools/lldb-mi/MICmnMIOutOfBandRecord.h =================================================================== --- tools/lldb-mi/MICmnMIOutOfBandRecord.h +++ 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 { Index: tools/lldb-mi/MICmnMIResultRecord.h =================================================================== --- tools/lldb-mi/MICmnMIResultRecord.h +++ 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 { Index: tools/lldb-mi/MICmnMIValue.h =================================================================== --- tools/lldb-mi/MICmnMIValue.h +++ 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 { Index: tools/lldb-mi/MICmnMIValueConst.h =================================================================== --- tools/lldb-mi/MICmnMIValueConst.h +++ 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 { Index: tools/lldb-mi/MICmnMIValueList.h =================================================================== --- tools/lldb-mi/MICmnMIValueList.h +++ 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 { Index: tools/lldb-mi/MICmnMIValueResult.h =================================================================== --- tools/lldb-mi/MICmnMIValueResult.h +++ 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 { Index: tools/lldb-mi/MICmnMIValueTuple.h =================================================================== --- tools/lldb-mi/MICmnMIValueTuple.h +++ 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 { Index: tools/lldb-mi/MICmnResources.h =================================================================== --- tools/lldb-mi/MICmnResources.h +++ tools/lldb-mi/MICmnResources.h @@ -279,9 +279,6 @@ // 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 { Index: tools/lldb-mi/MICmnStreamStderr.h =================================================================== --- tools/lldb-mi/MICmnStreamStderr.h +++ 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 { Index: tools/lldb-mi/MICmnStreamStdin.h =================================================================== --- tools/lldb-mi/MICmnStreamStdin.h +++ 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 { Index: tools/lldb-mi/MICmnStreamStdout.h =================================================================== --- tools/lldb-mi/MICmnStreamStdout.h +++ 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 { Index: tools/lldb-mi/MICmnThreadMgrStd.h =================================================================== --- tools/lldb-mi/MICmnThreadMgrStd.h +++ 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 { Index: tools/lldb-mi/MIDriver.h =================================================================== --- tools/lldb-mi/MIDriver.h +++ tools/lldb-mi/MIDriver.h @@ -32,9 +32,6 @@ // 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, Index: tools/lldb-mi/MIDriverBase.h =================================================================== --- tools/lldb-mi/MIDriverBase.h +++ tools/lldb-mi/MIDriverBase.h @@ -31,9 +31,6 @@ // 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 { Index: tools/lldb-mi/MIDriverMgr.h =================================================================== --- tools/lldb-mi/MIDriverMgr.h +++ 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 { Index: tools/lldb-mi/MIUtilDateTimeStd.h =================================================================== --- tools/lldb-mi/MIUtilDateTimeStd.h +++ 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 { Index: tools/lldb-mi/MIUtilDebug.h =================================================================== --- tools/lldb-mi/MIUtilDebug.h +++ tools/lldb-mi/MIUtilDebug.h @@ -19,9 +19,6 @@ //++ ============================================================================ // Details: MI debugging aid utility class. -// Gotchas: None. -// Authors: -// Changes: None. //-- class CMIUtilDebug { @@ -48,9 +45,6 @@ // 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 { Index: tools/lldb-mi/MIUtilFileStd.h =================================================================== --- tools/lldb-mi/MIUtilFileStd.h +++ 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 { Index: tools/lldb-mi/MIUtilMapIdToVariant.h =================================================================== --- tools/lldb-mi/MIUtilMapIdToVariant.h +++ 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 { Index: tools/lldb-mi/MIUtilSingletonBase.h =================================================================== --- tools/lldb-mi/MIUtilSingletonBase.h +++ tools/lldb-mi/MIUtilSingletonBase.h @@ -29,8 +29,6 @@ //++ ============================================================================ // 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 class ISingleton { Index: tools/lldb-mi/MIUtilSingletonHelper.h =================================================================== --- tools/lldb-mi/MIUtilSingletonHelper.h +++ tools/lldb-mi/MIUtilSingletonHelper.h @@ -6,9 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// -// Copyright: None. -//-- #pragma once @@ -29,8 +26,6 @@ // 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 bool @@ -58,8 +53,6 @@ // failure. // Return: True - Module shutdown succeeded. // False - Module shutdown failed. -// Authors: Aidan Dodds 17/03/2014. -// Changes: None. //-- template bool Index: tools/lldb-mi/MIUtilString.h =================================================================== --- tools/lldb-mi/MIUtilString.h +++ 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 { Index: tools/lldb-mi/MIUtilSystemLinux.h =================================================================== --- tools/lldb-mi/MIUtilSystemLinux.h +++ 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 { Index: tools/lldb-mi/MIUtilSystemOsx.h =================================================================== --- tools/lldb-mi/MIUtilSystemOsx.h +++ 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 { Index: tools/lldb-mi/MIUtilSystemWindows.h =================================================================== --- tools/lldb-mi/MIUtilSystemWindows.h +++ 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 { Index: tools/lldb-mi/MIUtilThreadBaseStd.h =================================================================== --- tools/lldb-mi/MIUtilThreadBaseStd.h +++ 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 @@ //++ ============================================================================ // Details: MI common code utility class. Thread object. -// Gotchas: None. -// Authors: Aidan Dodds 10/03/2014. -// Changes: None. //-- class CMIUtilThread { @@ -92,9 +83,6 @@ //++ ============================================================================ // 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 @@ // 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 { Index: tools/lldb-mi/MIUtilThreadBaseStd.cpp =================================================================== --- tools/lldb-mi/MIUtilThreadBaseStd.cpp +++ tools/lldb-mi/MIUtilThreadBaseStd.cpp @@ -6,8 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// Copyright: None. -//-- // Third Party Headers: #include Index: tools/lldb-mi/MIUtilVariant.h =================================================================== --- tools/lldb-mi/MIUtilVariant.h +++ 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 { Index: tools/lldb-mi/MIUtilVariant.cpp =================================================================== --- tools/lldb-mi/MIUtilVariant.cpp +++ tools/lldb-mi/MIUtilVariant.cpp @@ -6,8 +6,6 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// Copyright: None. -//-- // In-house headers: #include "MIUtilVariant.h"