Update ProcessLinux::CanDebug prototype

llvm-svn: 135791
This commit is contained in:
Peter Collingbourne 2011-07-22 19:12:53 +00:00
parent 9a8d848caf
commit 027ab7e512
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ ProcessLinux::~ProcessLinux()
// Process protocol.
bool
ProcessLinux::CanDebug(Target &target)
ProcessLinux::CanDebug(Target &target, bool plugin_specified_by_name)
{
// For now we are just making sure the file exists for a given module
ModuleSP exe_module_sp(target.GetExecutableModule());

View File

@ -58,7 +58,7 @@ public:
// Process protocol.
//------------------------------------------------------------------
virtual bool
CanDebug(lldb_private::Target &target);
CanDebug(lldb_private::Target &target, bool plugin_specified_by_name);
virtual lldb_private::Error
WillLaunch(lldb_private::Module *module);