blob: dc354df2303f9b85530d44d04ab778fd4a524523 [file] [log] [blame]
Howard Hinnant611fdaf2010-10-04 18:52:54 +00001//===------------------------- atomic.cpp ---------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "__mutex_base"
11#include "atomic"
12
13_LIBCPP_BEGIN_NAMESPACE_STD
14
15_LIBCPP_VISIBLE
16mutex&
17__not_atomic_mut()
18{
19 static mutex m;
20 return m;
21}
22
23_LIBCPP_END_NAMESPACE_STD