summaryrefslogtreecommitdiff
path: root/lib/System/Unix/RWMutex.inc
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-06-16 20:19:28 +0000
committerOwen Anderson <resistor@mac.com>2009-06-16 20:19:28 +0000
commit2a8cf9aadd39e507e6e09c25530a2f01ca27fe57 (patch)
tree2d21b27491e24b1fcd0f8510e0e9ccaff40c1ea4 /lib/System/Unix/RWMutex.inc
parent1555a23335400143f2b54a66aedc4b5cbbb79f8d (diff)
downloadllvm-2a8cf9aadd39e507e6e09c25530a2f01ca27fe57.tar.gz
llvm-2a8cf9aadd39e507e6e09c25530a2f01ca27fe57.tar.bz2
llvm-2a8cf9aadd39e507e6e09c25530a2f01ca27fe57.tar.xz
Add a portable wrapper for reader-writer locks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73545 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix/RWMutex.inc')
-rw-r--r--lib/System/Unix/RWMutex.inc43
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/System/Unix/RWMutex.inc b/lib/System/Unix/RWMutex.inc
new file mode 100644
index 0000000000..4487d7f83d
--- /dev/null
+++ b/lib/System/Unix/RWMutex.inc
@@ -0,0 +1,43 @@
+//= llvm/System/Unix/RWMutex.inc - Unix Reader/Writer Mutual Exclusion Lock =//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file implements the Unix specific (non-pthread) RWMutex class.
+//
+//===----------------------------------------------------------------------===//
+
+//===----------------------------------------------------------------------===//
+//=== WARNING: Implementation here must contain only generic UNIX code that
+//=== is guaranteed to work on *all* UNIX variants.
+//===----------------------------------------------------------------------===//
+
+namespace llvm {
+
+using namespace sys;
+
+RWMutex::RWMutex() { }
+
+RWMutex::~RWMutex() { }
+
+bool RWMutex::reader_acquire() {
+ return true;
+}
+
+bool RWMutex::reader_release() {
+ return true;
+}
+
+bool RWMutex::writer_acquire() {
+ return true;
+}
+
+bool RWMutex::writer_release() {
+ return true;
+}
+
+}