diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-16 20:19:28 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-16 20:19:28 +0000 |
commit | 324f94c317d38fc44b6ff3d4f47146c8b5ad97b4 (patch) | |
tree | 8312b30013632587464205f4eca05768ffd5688d /llvm/lib/System/Unix | |
parent | 274a6b4f2deaf18640054294a04c21de1f7302c4 (diff) | |
download | bcm5719-llvm-324f94c317d38fc44b6ff3d4f47146c8b5ad97b4.tar.gz bcm5719-llvm-324f94c317d38fc44b6ff3d4f47146c8b5ad97b4.zip |
Add a portable wrapper for reader-writer locks.
llvm-svn: 73545
Diffstat (limited to 'llvm/lib/System/Unix')
-rw-r--r-- | llvm/lib/System/Unix/RWMutex.inc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/llvm/lib/System/Unix/RWMutex.inc b/llvm/lib/System/Unix/RWMutex.inc new file mode 100644 index 00000000000..4487d7f83da --- /dev/null +++ b/llvm/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; +} + +} |