[Lldb-commits] [lldb] r365344 - [Host] Fix out-of-line definition of StartMonitoringChildProcess

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 8 09:31:38 PDT 2019


Author: jdevlieghere
Date: Mon Jul  8 09:31:37 2019
New Revision: 365344

URL: http://llvm.org/viewvc/llvm-project?rev=365344&view=rev
Log:
[Host] Fix out-of-line definition of StartMonitoringChildProcess

Modified:
    lldb/trunk/source/Host/macosx/objcxx/Host.mm

Modified: lldb/trunk/source/Host/macosx/objcxx/Host.mm
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/macosx/objcxx/Host.mm?rev=365344&r1=365343&r2=365344&view=diff
==============================================================================
--- lldb/trunk/source/Host/macosx/objcxx/Host.mm (original)
+++ lldb/trunk/source/Host/macosx/objcxx/Host.mm Mon Jul  8 09:31:37 2019
@@ -1420,7 +1420,7 @@ Status Host::ShellExpandArguments(Proces
   return error;
 }
 
-HostThread Host::StartMonitoringChildProcess(
+llvm::Expected<HostThread> Host::StartMonitoringChildProcess(
     const Host::MonitorChildProcessCallback &callback, lldb::pid_t pid,
     bool monitor_signals) {
   unsigned long mask = DISPATCH_PROC_EXIT;




More information about the lldb-commits mailing list