diff options
| author | Greg Clayton <gclayton@apple.com> | 2015-10-05 22:58:37 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2015-10-05 22:58:37 +0000 |
| commit | b3788eaf9976ce0323f886fda0bd510cfe8a2dea (patch) | |
| tree | 9c1c1a9f01e19d5ad5786c348da62f2bd5058b67 /lldb/scripts/interface | |
| parent | 41127ad7af1ff9b9573e402f599024bd24d18110 (diff) | |
| download | bcm5719-llvm-b3788eaf9976ce0323f886fda0bd510cfe8a2dea.tar.gz bcm5719-llvm-b3788eaf9976ce0323f886fda0bd510cfe8a2dea.zip | |
SBTarget::Attach(SBAttachInfo &) was changed to not be asynchronous back in February and this affected Xcode's abililty to cancel an attach to process by name.
Added the ability to specify if an attach by name should be synchronous or not in SBAttachInfo and ProcessAttachInfo.
<rdar://problem/22821480>
llvm-svn: 249361
Diffstat (limited to 'lldb/scripts/interface')
| -rw-r--r-- | lldb/scripts/interface/SBAttachInfo.i | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBAttachInfo.i b/lldb/scripts/interface/SBAttachInfo.i index e2123eeb435..4c8ef643c90 100644 --- a/lldb/scripts/interface/SBAttachInfo.i +++ b/lldb/scripts/interface/SBAttachInfo.i @@ -18,6 +18,8 @@ public: SBAttachInfo (const char *path, bool wait_for); + SBAttachInfo (const char *path, bool wait_for, bool async); + SBAttachInfo (const lldb::SBAttachInfo &rhs); lldb::pid_t @@ -38,6 +40,9 @@ public: void SetWaitForLaunch (bool b); + void + SetWaitForLaunch (bool b, bool async); + bool GetIgnoreExisting (); |

