summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/macosx/Host.mm
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2014-06-25 02:32:56 +0000
committerJim Ingham <jingham@apple.com>2014-06-25 02:32:56 +0000
commit106d02866d4d54b09c08e6a12915dba58e709294 (patch)
treed495af8b9b7f1823c685bc4ff2ce2a9a0289b5b9 /lldb/source/Host/macosx/Host.mm
parentab8d0a0dd514e8313f39e3f09482468577ffe144 (diff)
downloadbcm5719-llvm-106d02866d4d54b09c08e6a12915dba58e709294.tar.gz
bcm5719-llvm-106d02866d4d54b09c08e6a12915dba58e709294.zip
Added an option to turn OFF the "detach on error" behavior that was added
to debugserver when launching processes. <rdar://problem/16216199> llvm-svn: 211658
Diffstat (limited to 'lldb/source/Host/macosx/Host.mm')
-rw-r--r--lldb/source/Host/macosx/Host.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm
index f4932ef37f3..375f9e4fc1e 100644
--- a/lldb/source/Host/macosx/Host.mm
+++ b/lldb/source/Host/macosx/Host.mm
@@ -1669,7 +1669,7 @@ Host::LaunchProcess (ProcessLaunchInfo &launch_info)
const bool monitor_signals = false;
Host::MonitorChildProcessCallback callback = nullptr;
- if (!launch_info.GetFlags().Test(lldb::eLaunchFlagsDontSetExitStatus))
+ if (!launch_info.GetFlags().Test(lldb::eLaunchFlagDontSetExitStatus))
callback = Process::SetProcessExitStatus;
StartMonitoringChildProcess (callback,
OpenPOWER on IntegriCloud