Make ProcessLinux return true for DetachRequiresHalt() because PTRACE_DETACH requires this.

llvm-svn: 204759
This commit is contained in:
Andrew MacPherson 2014-03-25 21:40:04 +00:00
parent 7be410f5d5
commit 6ef17b96aa
1 changed files with 3 additions and 0 deletions

View File

@ -57,6 +57,9 @@ public:
virtual lldb_private::Error
DoDetach(bool keep_stopped);
virtual bool
DetachRequiresHalt() { return true; }
virtual bool
UpdateThreadList(lldb_private::ThreadList &old_thread_list, lldb_private::ThreadList &new_thread_list);