mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-09 07:13:43 +00:00
47 lines
622 B
C++
47 lines
622 B
C++
// Aseprite Base Library
|
|
// Copyright (c) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "base/mutex.h"
|
|
|
|
#ifdef WIN32
|
|
#include "base/mutex_win32.h"
|
|
#else
|
|
#include "base/mutex_pthread.h"
|
|
#endif
|
|
|
|
namespace base {
|
|
|
|
mutex::mutex()
|
|
: m_impl(new mutex_impl)
|
|
{
|
|
}
|
|
|
|
mutex::~mutex()
|
|
{
|
|
delete m_impl;
|
|
}
|
|
|
|
void mutex::lock()
|
|
{
|
|
return m_impl->lock();
|
|
}
|
|
|
|
bool mutex::try_lock()
|
|
{
|
|
return m_impl->try_lock();
|
|
}
|
|
|
|
void mutex::unlock()
|
|
{
|
|
return m_impl->unlock();
|
|
}
|
|
|
|
} // namespace base
|