summaryrefslogtreecommitdiffstats
path: root/llvm/lib/System/Unix/Mutex.inc
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/System/Unix/Mutex.inc')
-rw-r--r--llvm/lib/System/Unix/Mutex.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/System/Unix/Mutex.inc b/llvm/lib/System/Unix/Mutex.inc
index 4a015a676fc..10e7ecb75a5 100644
--- a/llvm/lib/System/Unix/Mutex.inc
+++ b/llvm/lib/System/Unix/Mutex.inc
@@ -20,28 +20,28 @@ namespace llvm
{
using namespace sys;
-Mutex::Mutex( bool recursive)
+MutexImpl::MutexImpl( bool recursive)
{
}
-Mutex::~Mutex()
+MutexImpl::~MutexImpl()
{
}
bool
-Mutex::acquire()
+MutexImpl::MutexImpl()
{
return true;
}
bool
-Mutex::release()
+MutexImpl::release()
{
return true;
}
bool
-Mutex::tryacquire( void )
+MutexImpl::tryacquire( void )
{
return true;
}
OpenPOWER on IntegriCloud