diff options
Diffstat (limited to 'ipc/chromium/src/base/atomicops_internals_mutex.cc')
-rw-r--r-- | ipc/chromium/src/base/atomicops_internals_mutex.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ipc/chromium/src/base/atomicops_internals_mutex.cc b/ipc/chromium/src/base/atomicops_internals_mutex.cc new file mode 100644 index 000000000..b129c86e8 --- /dev/null +++ b/ipc/chromium/src/base/atomicops_internals_mutex.cc @@ -0,0 +1,15 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "base/atomicops.h" + +namespace base { +namespace subtle { + +Lock gAtomicsMutex; + +} // namespace subtle +} // namespace base |