From: Jonas Devlieghere Date: Mon, 3 Dec 2018 22:41:32 +0000 (+0000) Subject: [FileSystem] Migrate MonitoringProcessLauncher X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0bbe9a7a98083f9ea036f602e0bed65e2f3ccc6d;p=platform%2Fupstream%2Fllvm.git [FileSystem] Migrate MonitoringProcessLauncher Use the FileSystem helpers instead of using the file system directly. llvm-svn: 348207 --- diff --git a/lldb/source/Host/common/MonitoringProcessLauncher.cpp b/lldb/source/Host/common/MonitoringProcessLauncher.cpp index 6b7b18b..f6f772c 100644 --- a/lldb/source/Host/common/MonitoringProcessLauncher.cpp +++ b/lldb/source/Host/common/MonitoringProcessLauncher.cpp @@ -12,7 +12,6 @@ #include "lldb/Host/HostProcess.h" #include "lldb/Target/ProcessLaunchInfo.h" #include "lldb/Utility/Log.h" -#include "lldb/Utility/Status.h" #include "llvm/Support/FileSystem.h" @@ -30,20 +29,16 @@ MonitoringProcessLauncher::LaunchProcess(const ProcessLaunchInfo &launch_info, error.Clear(); + FileSystem &fs = FileSystem::Instance(); FileSpec exe_spec(resolved_info.GetExecutableFile()); - llvm::sys::fs::file_status stats; - status(exe_spec.GetPath(), stats); - if (!exists(stats)) { + if (!fs.Exists(exe_spec)) FileSystem::Instance().Resolve(exe_spec); - status(exe_spec.GetPath(), stats); - } - if (!exists(stats)) { + + if (!fs.Exists(exe_spec)) FileSystem::Instance().ResolveExecutableLocation(exe_spec); - status(exe_spec.GetPath(), stats); - } - if (!exists(stats)) { + if (!fs.Exists(exe_spec)) { error.SetErrorStringWithFormatv("executable doesn't exist: '{0}'", exe_spec); return HostProcess();