summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/System/Unix/Mutex.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/System/Unix/Mutex.inc b/llvm/lib/System/Unix/Mutex.inc
index fa218dbb53c..d0984a4e19e 100644
--- a/llvm/lib/System/Unix/Mutex.inc
+++ b/llvm/lib/System/Unix/Mutex.inc
@@ -31,16 +31,19 @@ Mutex::~Mutex()
bool
Mutex::acquire()
{
+ return true;
}
bool
Mutex::release()
{
+ return true;
}
bool
Mutex::tryacquire( void )
{
+ return true;
}
}
OpenPOWER on IntegriCloud