diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-11-28 01:47:46 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-11-28 01:47:46 +0000 |
| commit | cc23eb6fbf9fd540d29992f75271f692ba6c7abd (patch) | |
| tree | 5350ffa4e114af4995903f12bad99a4898e4a0a6 | |
| parent | 6d110aa84dce900dfd1f7b17f8dfeb7fbdc532d0 (diff) | |
| download | bcm5719-llvm-cc23eb6fbf9fd540d29992f75271f692ba6c7abd.tar.gz bcm5719-llvm-cc23eb6fbf9fd540d29992f75271f692ba6c7abd.zip | |
Now the linux platform lets it be known that it can't launch processes for
debugging.
llvm-svn: 145221
| -rw-r--r-- | lldb/source/Plugins/Platform/Linux/PlatformLinux.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Platform/Linux/PlatformLinux.h b/lldb/source/Plugins/Platform/Linux/PlatformLinux.h index 10cdc6a55da..eed5813edfe 100644 --- a/lldb/source/Plugins/Platform/Linux/PlatformLinux.h +++ b/lldb/source/Plugins/Platform/Linux/PlatformLinux.h @@ -98,6 +98,12 @@ namespace lldb_private { Attach(ProcessAttachInfo &attach_info, Debugger &debugger, Target *target, Listener &listener, Error &error); + virtual bool + CanDebugProcess () + { + return false; + } + protected: |

