Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 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" |
Greg Clayton | 5f54ac3 | 2011-02-08 05:05:52 +0000 | [diff] [blame] | 12 | #include "lldb/Host/FileSpec.h" |
Caroline Tice | 7826c88 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 13 | #include "lldb/Core/Log.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 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 | |
Jim Ingham | aa93c93 | 2012-12-21 22:22:26 +0000 | [diff] [blame] | 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 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 41 | lldb::thread_t |
| 42 | SBHostOS::ThreadCreate |
| 43 | ( |
| 44 | const char *name, |
| 45 | void *(*thread_function)(void *), |
| 46 | void *thread_arg, |
| 47 | SBError *error_ptr |
| 48 | ) |
| 49 | { |
Greg Clayton | e005f2c | 2010-11-06 01:53:30 +0000 | [diff] [blame] | 50 | LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Caroline Tice | 7826c88 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 51 | |
| 52 | if (log) |
Greg Clayton | 49ce682 | 2010-10-31 03:01:06 +0000 | [diff] [blame] | 53 | log->Printf ("SBHostOS::ThreadCreate (name=\"%s\", thread_function=%p, thread_arg=%p, error_ptr=%p)", name, |
Caroline Tice | 61ba7ec | 2010-10-26 23:49:36 +0000 | [diff] [blame] | 54 | thread_function, thread_arg, error_ptr); |
Caroline Tice | 7826c88 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 55 | |
Caroline Tice | 84cc16d | 2011-06-14 16:36:12 +0000 | [diff] [blame] | 56 | // FIXME: You should log the return value? |
Caroline Tice | 7826c88 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 57 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 58 | return Host::ThreadCreate (name, thread_function, thread_arg, error_ptr ? error_ptr->get() : NULL); |
| 59 | } |
| 60 | |
| 61 | void |
| 62 | SBHostOS::ThreadCreated (const char *name) |
| 63 | { |
| 64 | Host::ThreadCreated (name); |
| 65 | } |
| 66 | |
| 67 | bool |
| 68 | SBHostOS::ThreadCancel (lldb::thread_t thread, SBError *error_ptr) |
| 69 | { |
| 70 | return Host::ThreadCancel (thread, error_ptr ? error_ptr->get() : NULL); |
| 71 | } |
| 72 | |
| 73 | bool |
| 74 | SBHostOS::ThreadDetach (lldb::thread_t thread, SBError *error_ptr) |
| 75 | { |
| 76 | return Host::ThreadDetach (thread, error_ptr ? error_ptr->get() : NULL); |
| 77 | } |
| 78 | |
| 79 | bool |
| 80 | SBHostOS::ThreadJoin (lldb::thread_t thread, void **result, SBError *error_ptr) |
| 81 | { |
| 82 | return Host::ThreadJoin (thread, result, error_ptr ? error_ptr->get() : NULL); |
| 83 | } |
| 84 | |
| 85 | |