summaryrefslogtreecommitdiffstats
path: root/llvm/lib/System/Unix
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/System/Unix')
-rw-r--r--llvm/lib/System/Unix/RWMutex.inc12
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/System/Unix/RWMutex.inc b/llvm/lib/System/Unix/RWMutex.inc
index 4487d7f83da..e83d41ef4cf 100644
--- a/llvm/lib/System/Unix/RWMutex.inc
+++ b/llvm/lib/System/Unix/RWMutex.inc
@@ -20,23 +20,23 @@ namespace llvm {
using namespace sys;
-RWMutex::RWMutex() { }
+RWMutexImpl::RWMutexImpl() { }
-RWMutex::~RWMutex() { }
+RWMutexImpl::~RWMutexImpl() { }
-bool RWMutex::reader_acquire() {
+bool RWMutexImpl::reader_acquire() {
return true;
}
-bool RWMutex::reader_release() {
+bool RWMutexImpl::reader_release() {
return true;
}
-bool RWMutex::writer_acquire() {
+bool RWMutexImpl::writer_acquire() {
return true;
}
-bool RWMutex::writer_release() {
+bool RWMutexImpl::writer_release() {
return true;
}
OpenPOWER on IntegriCloud