Insert a SmartMutex templated class into the class hierarchy, which takes a template...
[oota-llvm.git] / lib / System / Unix / Mutex.inc
index 4a015a676fc7481769ab46b0ffc8eea66c661d19..10e7ecb75a5f71a6d1fa26eb1eed754db35e9c10 100644 (file)
@@ -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;
 }