diff options
Diffstat (limited to 'source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h')
| -rw-r--r-- | source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h b/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h index 445c4a0fb82b..96fbf4a548c4 100644 --- a/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h +++ b/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h @@ -13,12 +13,13 @@  // C Includes  // C++ Includes  #include <map> +#include <mutex>  #include <vector> +  // Other libraries and framework includes  // Project includes  #include "lldb/lldb-public.h"  #include "lldb/Core/Error.h" -#include "lldb/Host/Mutex.h"  #include "lldb/Symbol/CompilerType.h"  // This class will insert a UtilityFunction into the inferior process for @@ -107,11 +108,10 @@ private:      lldb_private::Process *m_process;      std::unique_ptr<UtilityFunction> m_get_pending_items_impl_code; -    Mutex m_get_pending_items_function_mutex; +    std::mutex m_get_pending_items_function_mutex;      lldb::addr_t m_get_pending_items_return_buffer_addr; -    Mutex m_get_pending_items_retbuffer_mutex; - +    std::mutex m_get_pending_items_retbuffer_mutex;  };  }  // using namespace lldb_private  | 
