mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 12:25:46 +08:00
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
This commit is contained in:
@@ -369,6 +369,18 @@ SBAttachInfo::SetWaitForLaunch (bool b)
|
||||
m_opaque_sp->SetWaitForLaunch (b);
|
||||
}
|
||||
|
||||
bool
|
||||
SBAttachInfo::GetIgnoreExisting ()
|
||||
{
|
||||
return m_opaque_sp->GetIgnoreExisting();
|
||||
}
|
||||
|
||||
void
|
||||
SBAttachInfo::SetIgnoreExisting (bool b)
|
||||
{
|
||||
m_opaque_sp->SetIgnoreExisting (b);
|
||||
}
|
||||
|
||||
uint32_t
|
||||
SBAttachInfo::GetUserID()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user