1 //===-- SBHostOS.cpp --------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "lldb/API/SBHostOS.h" 11 #include "lldb/API/SBError.h" 12 #include "lldb/Host/FileSpec.h" 13 #include "lldb/Core/Log.h" 14 #include "lldb/Host/Host.h" 15 16 using namespace lldb; 17 using namespace lldb_private; 18 19 20 21 SBFileSpec 22 SBHostOS::GetProgramFileSpec () 23 { 24 SBFileSpec sb_filespec; 25 sb_filespec.SetFileSpec (Host::GetProgramFileSpec ()); 26 return sb_filespec; 27 } 28 29 SBFileSpec 30 SBHostOS::GetLLDBPythonPath () 31 { 32 SBFileSpec sb_lldb_python_filespec; 33 FileSpec lldb_python_spec; 34 if (Host::GetLLDBPath (ePathTypePythonDir, lldb_python_spec)) 35 { 36 sb_lldb_python_filespec.SetFileSpec (lldb_python_spec); 37 } 38 return sb_lldb_python_filespec; 39 } 40 41 lldb::thread_t 42 SBHostOS::ThreadCreate 43 ( 44 const char *name, 45 lldb::thread_func_t thread_function, 46 void *thread_arg, 47 SBError *error_ptr 48 ) 49 { 50 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); 51 52 if (log) 53 log->Printf ("SBHostOS::ThreadCreate (name=\"%s\", thread_function=%p, thread_arg=%p, error_ptr=%p)", 54 name, reinterpret_cast<void*>(thread_function), 55 static_cast<void*>(thread_arg), 56 static_cast<void*>(error_ptr)); 57 58 // FIXME: You should log the return value? 59 60 return Host::ThreadCreate (name, thread_function, thread_arg, error_ptr ? error_ptr->get() : NULL); 61 } 62 63 void 64 SBHostOS::ThreadCreated (const char *name) 65 { 66 Host::ThreadCreated (name); 67 } 68 69 bool 70 SBHostOS::ThreadCancel (lldb::thread_t thread, SBError *error_ptr) 71 { 72 return Host::ThreadCancel (thread, error_ptr ? error_ptr->get() : NULL); 73 } 74 75 bool 76 SBHostOS::ThreadDetach (lldb::thread_t thread, SBError *error_ptr) 77 { 78 return Host::ThreadDetach (thread, error_ptr ? error_ptr->get() : NULL); 79 } 80 81 bool 82 SBHostOS::ThreadJoin (lldb::thread_t thread, lldb::thread_result_t *result, SBError *error_ptr) 83 { 84 return Host::ThreadJoin (thread, result, error_ptr ? error_ptr->get() : NULL); 85 } 86 87 88