mohit.bhakkad created this revision.
mohit.bhakkad added a reviewer: jaydeep.
mohit.bhakkad added a subscriber: lldb-commits.
mohit.bhakkad set the repository for this revision to rL LLVM.

Resolving build failure due to some changes in rL245831

Repository:
  rL LLVM

http://reviews.llvm.org/D12427

Files:
  source/Plugins/Process/Linux/NativeProcessLinux.cpp

Index: source/Plugins/Process/Linux/NativeProcessLinux.cpp
===================================================================
--- source/Plugins/Process/Linux/NativeProcessLinux.cpp
+++ source/Plugins/Process/Linux/NativeProcessLinux.cpp
@@ -1302,7 +1302,7 @@
             log->Printf("NativeProcessLinux::%s() "
                         "received error while checking for watchpoint hits, "
                         "pid = %" PRIu64 " error = %s",
-                        __FUNCTION__, pid, error.AsCString());
+                        __FUNCTION__, thread.GetID(), error.AsCString());
         if (wp_index != LLDB_INVALID_INDEX32)
         {
             MonitorWatchpoint(thread, wp_index);


Index: source/Plugins/Process/Linux/NativeProcessLinux.cpp
===================================================================
--- source/Plugins/Process/Linux/NativeProcessLinux.cpp
+++ source/Plugins/Process/Linux/NativeProcessLinux.cpp
@@ -1302,7 +1302,7 @@
             log->Printf("NativeProcessLinux::%s() "
                         "received error while checking for watchpoint hits, "
                         "pid = %" PRIu64 " error = %s",
-                        __FUNCTION__, pid, error.AsCString());
+                        __FUNCTION__, thread.GetID(), error.AsCString());
         if (wp_index != LLDB_INVALID_INDEX32)
         {
             MonitorWatchpoint(thread, wp_index);
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to