(no commit message)

llvm-svn: 214319
This commit is contained in:
Greg Clayton
2014-07-30 17:38:47 +00:00
parent a12e023c8a
commit 06357c930c
13 changed files with 159 additions and 129 deletions

View File

@@ -38,6 +38,17 @@ SBHostOS::GetLLDBPythonPath ()
return sb_lldb_python_filespec;
}
SBFileSpec
SBHostOS::GetLLDBPath (lldb::PathType path_type)
{
SBFileSpec sb_fspec;
FileSpec fspec;
if (Host::GetLLDBPath (path_type, fspec))
sb_fspec.SetFileSpec (fspec);
return sb_fspec;
}
lldb::thread_t
SBHostOS::ThreadCreate
(