summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2015-05-13 19:44:44 +0000
committerZachary Turner <zturner@google.com>2015-05-13 19:44:44 +0000
commit1aa755ce772a311a1c5280578d6303be8d088203 (patch)
tree035814bfbba814f7895eadd90e444460b1b5adc4 /lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
parent7271bab3bbe73b801896598012ef5d66e178e4e9 (diff)
downloadbcm5719-llvm-1aa755ce772a311a1c5280578d6303be8d088203.tar.gz
bcm5719-llvm-1aa755ce772a311a1c5280578d6303be8d088203.zip
Remove DoAttachToProcessWithId(lldb::pid_t).
There were two versions of DoAttachToprocessWithId. One that takes a pid_t, and the other which takes a pid_t and a ProcessAttachInfo. There were no callers of the former version, and all of the implementations of this version were simply forwarding calls to one version or the other. llvm-svn: 237281
Diffstat (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp')
-rw-r--r--lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
index 87c6d15c3ba..2acc81bb483 100644
--- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
+++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
@@ -406,15 +406,6 @@ ProcessKDP::DoLaunch (Module *exe_module,
return error;
}
-
-Error
-ProcessKDP::DoAttachToProcessWithID (lldb::pid_t attach_pid)
-{
- Error error;
- error.SetErrorString ("attach to process by ID is not suppported in kdp remote debugging");
- return error;
-}
-
Error
ProcessKDP::DoAttachToProcessWithID (lldb::pid_t attach_pid, const ProcessAttachInfo &attach_info)
{
OpenPOWER on IntegriCloud