diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-10-18 20:39:07 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-10-18 20:39:07 +0000 |
commit | b2b5513dcc57af8adfabee6f19c5d63ba124c6f9 (patch) | |
tree | 6737753c1fbdaf88753d05f927e147c7cb1327ba /libcxx/src | |
parent | 0a5314fdb31a27403b6b6d9f2f6d6186a00f4192 (diff) | |
download | bcm5719-llvm-b2b5513dcc57af8adfabee6f19c5d63ba124c6f9.tar.gz bcm5719-llvm-b2b5513dcc57af8adfabee6f19c5d63ba124c6f9.zip |
Changing <atomic> to follow Design A
llvm-svn: 116742
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/atomic.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libcxx/src/atomic.cpp b/libcxx/src/atomic.cpp deleted file mode 100644 index dc354df2303..00000000000 --- a/libcxx/src/atomic.cpp +++ /dev/null @@ -1,23 +0,0 @@ -//===------------------------- atomic.cpp ---------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "__mutex_base" -#include "atomic" - -_LIBCPP_BEGIN_NAMESPACE_STD - -_LIBCPP_VISIBLE -mutex& -__not_atomic_mut() -{ - static mutex m; - return m; -} - -_LIBCPP_END_NAMESPACE_STD |