[Lldb-commits] [lldb] r113673 - in /lldb/trunk: include/lldb/Interpreter/ScriptInterpreter.h include/lldb/Interpreter/ScriptInterpreterPython.h source/Commands/CommandObjectBreakpointCommand.cpp source/Commands/CommandObjectBreakpointCommand.h source/Interpreter/ScriptInterpreterPython.cpp

Johnny Chen johnny.chen at apple.com
Fri Sep 10 17:23:59 PDT 2010


Author: johnny
Date: Fri Sep 10 19:23:59 2010
New Revision: 113673

URL: http://llvm.org/viewvc/llvm-project?rev=113673&view=rev
Log:
Fixed some comments.

Modified:
    lldb/trunk/include/lldb/Interpreter/ScriptInterpreter.h
    lldb/trunk/include/lldb/Interpreter/ScriptInterpreterPython.h
    lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp
    lldb/trunk/source/Commands/CommandObjectBreakpointCommand.h
    lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp

Modified: lldb/trunk/include/lldb/Interpreter/ScriptInterpreter.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Interpreter/ScriptInterpreter.h?rev=113673&r1=113672&r2=113673&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Interpreter/ScriptInterpreter.h (original)
+++ lldb/trunk/include/lldb/Interpreter/ScriptInterpreter.h Fri Sep 10 19:23:59 2010
@@ -77,7 +77,7 @@
                                              BreakpointOptions *bp_options,
                                              CommandReturnObject &result);
 
-    /// Set a one-liner as the callback for the breakpoint command.
+    /// Set a one-liner as the callback for the breakpoint.
     virtual void 
     SetBreakpointCommandCallback (CommandInterpreter &interpreter,
                                   BreakpointOptions *bp_options,

Modified: lldb/trunk/include/lldb/Interpreter/ScriptInterpreterPython.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Interpreter/ScriptInterpreterPython.h?rev=113673&r1=113672&r2=113673&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Interpreter/ScriptInterpreterPython.h (original)
+++ lldb/trunk/include/lldb/Interpreter/ScriptInterpreterPython.h Fri Sep 10 19:23:59 2010
@@ -62,7 +62,7 @@
                                              BreakpointOptions *bp_options,
                                              CommandReturnObject &result);
 
-    /// Set a one-liner as the callback for the breakpoint command.
+    /// Set a Python one-liner as the callback for the breakpoint.
     void 
     SetBreakpointCommandCallback (CommandInterpreter &interpreter,
                                   BreakpointOptions *bp_options,

Modified: lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp?rev=113673&r1=113672&r2=113673&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp Fri Sep 10 19:23:59 2010
@@ -382,7 +382,7 @@
 
 }
 
-// Set a one-liner as the callback for the breakpoint command.
+// Set a one-liner as the callback for the breakpoint.
 void
 CommandObjectBreakpointCommandAdd::SetBreakpointCommandCallback (CommandInterpreter &interpreter,
                                                                  BreakpointOptions *bp_options,

Modified: lldb/trunk/source/Commands/CommandObjectBreakpointCommand.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpointCommand.h?rev=113673&r1=113672&r2=113673&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpointCommand.h (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpointCommand.h Fri Sep 10 19:23:59 2010
@@ -74,6 +74,7 @@
                                              BreakpointOptions *bp_options, 
                                              CommandReturnObject &result);
 
+    /// Set a one-liner as the callback for the breakpoint.
     void 
     SetBreakpointCommandCallback (CommandInterpreter &interpreter,
                                   BreakpointOptions *bp_options,

Modified: lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp?rev=113673&r1=113672&r2=113673&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp (original)
+++ lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp Fri Sep 10 19:23:59 2010
@@ -653,7 +653,7 @@
     }
 }
 
-// Set a Python one-liner as the callback for the breakpoint command.
+// Set a Python one-liner as the callback for the breakpoint.
 void
 ScriptInterpreterPython::SetBreakpointCommandCallback (CommandInterpreter &interpreter,
                                                        BreakpointOptions *bp_options,





More information about the lldb-commits mailing list