Revert 91528 and use a std::vector instead, fixing an abuse of std::string.
[oota-llvm.git] / lib / System / Unix / Mutex.inc
index fa218dbb53c375e82a513504d75fa64c1a536612..4a5e28de27b082ee1e828574e425d22139bef3e4 100644 (file)
@@ -2,8 +2,8 @@
 // 
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
-// University of Illinois Open Source License. See LICENSE.TXT for details.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
 //
@@ -20,27 +20,24 @@ namespace llvm
 {
 using namespace sys;
 
-Mutex::Mutex( bool recursive)
+MutexImpl::MutexImpl( bool recursive)
 {
 }
 
-Mutex::~Mutex()
+MutexImpl::~MutexImpl()
 {
 }
 
 bool 
-Mutex::acquire()
+MutexImpl::release()
 {
+  return true;
 }
 
 bool 
-Mutex::release()
-{
-}
-
-bool 
-Mutex::tryacquire( void )
+MutexImpl::tryacquire( void )
 {
+  return true;
 }
 
 }