diff options
author | Jim Ingham <jingham@apple.com> | 2012-07-20 21:37:13 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-07-20 21:37:13 +0000 |
commit | cd16df9154d46bb4ff49ed8843df714a7376d072 (patch) | |
tree | ee33109563981740402ee3d93477eca660d07876 /lldb/scripts/Python | |
parent | 5e4fe00e644177dd5b6c8bd330be6dfe0f25610b (diff) | |
download | llvm-cd16df9154d46bb4ff49ed8843df714a7376d072.zip llvm-cd16df9154d46bb4ff49ed8843df714a7376d072.tar.gz llvm-cd16df9154d46bb4ff49ed8843df714a7376d072.tar.bz2 |
Add "vAttachOrWait" to debugserver, so you can implement "attach to the process if it exists OR wait for it" without race conditions. Use that in lldb.
llvm-svn: 160578
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index a1eaeb0..8a304ee 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -125,6 +125,12 @@ public: void SetWaitForLaunch (bool b); + bool + GetIgnoreExisting (); + + void + SetIgnoreExisting (bool b); + uint32_t GetResumeCount (); |