diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2015-10-21 19:34:26 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-10-21 19:34:26 +0000 |
commit | 9fe526c2e741351387d572093d65da2018d6b88a (patch) | |
tree | 56799a886db0c714fcc3b08fc20ae9f5a8920819 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h | |
parent | 526b5f9cd4794794d278db42c56f074404aa9a5e (diff) | |
download | bcm5719-llvm-9fe526c2e741351387d572093d65da2018d6b88a.tar.gz bcm5719-llvm-9fe526c2e741351387d572093d65da2018d6b88a.zip |
Add domain socket support to gdb-remote protocol and lldb-server.
http://reviews.llvm.org/D13881
llvm-svn: 250933
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h index 94ffa512884..dee3528463f 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h @@ -167,11 +167,10 @@ public: // supplied connection URL. //------------------------------------------------------------------ Error - StartDebugserverProcess (const char *hostname, - uint16_t in_port, // If set to zero, then out_port will contain the bound port on exit + StartDebugserverProcess (const char *url, Platform *platform, // If non NULL, then check with the platform for the GDB server binary if it can't be located ProcessLaunchInfo &launch_info, - uint16_t &out_port); + uint16_t *port); void DumpHistory(Stream &strm); |