[Lldb-commits] [lldb] r145221 - /lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h

Greg Clayton gclayton at apple.com
Sun Nov 27 17:47:46 PST 2011


Author: gclayton
Date: Sun Nov 27 19:47:46 2011
New Revision: 145221

URL: http://llvm.org/viewvc/llvm-project?rev=145221&view=rev
Log:
Now the linux platform lets it be known that it can't launch processes for
debugging.


Modified:
    lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h

Modified: lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h?rev=145221&r1=145220&r2=145221&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h Sun Nov 27 19:47:46 2011
@@ -98,6 +98,12 @@
         Attach(ProcessAttachInfo &attach_info, Debugger &debugger,
                Target *target, Listener &listener, Error &error);
 
+        virtual bool
+        CanDebugProcess ()
+        {
+            return false;
+        }
+
     protected:
         
         





More information about the lldb-commits mailing list