[Lldb-commits] [PATCH] Fix lldb OS X build

Keno Fischer kfischer at college.harvard.edu
Wed Aug 6 14:27:33 PDT 2014


Closed by commit rL214996 (authored by kfischer).

REPOSITORY
  rL LLVM

http://reviews.llvm.org/D4815

Files:
  lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp

Index: lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
===================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
+++ lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
@@ -22,6 +22,7 @@
 #include "lldb/Core/UUID.h"
 #include "lldb/Host/Host.h"
 #include "lldb/Host/Symbols.h"
+#include "lldb/Host/Socket.h"
 #include "lldb/Interpreter/CommandInterpreter.h"
 #include "lldb/Interpreter/CommandObject.h"
 #include "lldb/Interpreter/CommandObjectMultiword.h"
@@ -272,8 +273,8 @@
 
     if (conn_ap->IsConnected())
     {
-        const Socket& socket = static_cast<const Socket&>(conn_ap->GetReadObject());
-        const uint16_t reply_port = socket.GetPort();
+        const Socket& socket = static_cast<const Socket&>(*conn_ap->GetReadObject());
+        const uint16_t reply_port = socket.GetPortNumber();
 
         if (reply_port != 0)
         {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D4815.12253.patch
Type: text/x-patch
Size: 954 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20140806/3d47c70d/attachment.bin>


More information about the lldb-commits mailing list