[Lldb-commits] [lldb] r138863 - in /lldb/trunk/tools/debugserver/source/MacOSX: i386/DNBArchImplI386.cpp x86_64/DNBArchImplX86_64.cpp

Johnny Chen johnny.chen at apple.com
Wed Aug 31 10:29:29 PDT 2011


Author: johnny
Date: Wed Aug 31 12:29:29 2011
New Revision: 138863

URL: http://llvm.org/viewvc/llvm-project?rev=138863&view=rev
Log:
Update comments.

Modified:
    lldb/trunk/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp
    lldb/trunk/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp

Modified: lldb/trunk/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp?rev=138863&r1=138862&r2=138863&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp (original)
+++ lldb/trunk/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp Wed Aug 31 12:29:29 2011
@@ -767,7 +767,7 @@
         {
             // Modify our local copy of the debug state, first.
             SetWatchpoint(debug_state, i, addr, size, read, write);
-            // Ready to set the watch point in the inferior.
+            // Now set the watch point in the inferior.
             kret = SetDBGState();
             DNBLogThreadedIf(LOG_WATCHPOINTS, "DNBArchImplI386::EnableHardwareWatchpoint() SetDBGState() => 0x%8.8x.", kret);
 
@@ -795,7 +795,7 @@
         {
             // Modify our local copy of the debug state, first.
             ClearWatchpoint(debug_state, hw_index);
-            // Ready to disable the watch point in the inferior.
+            // Now disable the watch point in the inferior.
             kret = SetDBGState();
             DNBLogThreadedIf(LOG_WATCHPOINTS, "DNBArchImplI386::DisableHardwareWatchpoint( %u )",
                              hw_index);

Modified: lldb/trunk/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp?rev=138863&r1=138862&r2=138863&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp (original)
+++ lldb/trunk/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp Wed Aug 31 12:29:29 2011
@@ -695,7 +695,7 @@
         {
             // Modify our local copy of the debug state, first.
             SetWatchpoint(debug_state, i, addr, size, read, write);
-            // Ready to set the watch point in the inferior.
+            // Now set the watch point in the inferior.
             kret = SetDBGState();
             DNBLogThreadedIf(LOG_WATCHPOINTS, "DNBArchImplX86_64::EnableHardwareWatchpoint() SetDBGState() => 0x%8.8x.", kret);
 
@@ -723,7 +723,7 @@
         {
             // Modify our local copy of the debug state, first.
             ClearWatchpoint(debug_state, hw_index);
-            // Ready to disable the watch point in the inferior.
+            // Now disable the watch point in the inferior.
             kret = SetDBGState();
             DNBLogThreadedIf(LOG_WATCHPOINTS, "DNBArchImplX86_64::DisableHardwareWatchpoint( %u )",
                              hw_index);





More information about the lldb-commits mailing list