diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-07-16 03:19:08 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-07-16 03:19:08 +0000 |
| commit | 4df8ddfc97b7a47fbe123d4a4225dd0ec9ce0303 (patch) | |
| tree | 0bc5b6963d33eca6cf882a19ce14bc299bea58f9 /lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | |
| parent | 0318036c4dd100b71ec1b59760c6c1f9710dc0b7 (diff) | |
| download | bcm5719-llvm-4df8ddfc97b7a47fbe123d4a4225dd0ec9ce0303.tar.gz bcm5719-llvm-4df8ddfc97b7a47fbe123d4a4225dd0ec9ce0303.zip | |
Completed more work on the KDP darwin kernel debugging Process plug-in.
Implemented connect, disconnect, reattach, version, and hostinfo.
Modified the ConnectionFileDescriptor class to be able to handle UDP.
Added a new Stream subclass called StreamBuffer that is backed by a
llvm::SmallVector for better efficiency.
Modified the DataExtractor class to have a static function that can
dump hex bytes into a stream. This is currently being used to dump incoming
binary packet data in the KDP plug-in.
llvm-svn: 135338
Diffstat (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp index 9e199c14334..1e3158d2cad 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp @@ -63,7 +63,6 @@ ProcessKDP::CanDebug(Target &target) if (triple_ref.getOS() == llvm::Triple::Darwin && triple_ref.getVendor() == llvm::Triple::Apple) { - ObjectFile *exe_objfile = exe_module_sp->GetObjectFile(); if (exe_objfile->GetType() == ObjectFile::eTypeExecutable && exe_objfile->GetStrata() == ObjectFile::eStrataKernel) |

