Added llvm into exceptions as we can't add README.chromium into 3rd party repository
[chromium-blink-merge.git] / base / threading / thread_restrictions.cc
blob871f2dc874c3faabce91e0d85f29075548715fd3
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/threading/thread_restrictions.h"
7 #if ENABLE_THREAD_RESTRICTIONS
9 #include "base/lazy_instance.h"
10 #include "base/logging.h"
11 #include "base/threading/thread_local.h"
13 namespace base {
15 namespace {
17 LazyInstance<ThreadLocalBoolean>::Leaky
18 g_io_disallowed = LAZY_INSTANCE_INITIALIZER;
20 LazyInstance<ThreadLocalBoolean>::Leaky
21 g_singleton_disallowed = LAZY_INSTANCE_INITIALIZER;
23 LazyInstance<ThreadLocalBoolean>::Leaky
24 g_wait_disallowed = LAZY_INSTANCE_INITIALIZER;
26 } // anonymous namespace
28 // static
29 bool ThreadRestrictions::SetIOAllowed(bool allowed) {
30 bool previous_disallowed = g_io_disallowed.Get().Get();
31 g_io_disallowed.Get().Set(!allowed);
32 return !previous_disallowed;
35 // static
36 void ThreadRestrictions::AssertIOAllowed() {
37 if (g_io_disallowed.Get().Get()) {
38 LOG(FATAL) <<
39 "Function marked as IO-only was called from a thread that "
40 "disallows IO! If this thread really should be allowed to "
41 "make IO calls, adjust the call to "
42 "base::ThreadRestrictions::SetIOAllowed() in this thread's "
43 "startup.";
47 // static
48 bool ThreadRestrictions::SetSingletonAllowed(bool allowed) {
49 bool previous_disallowed = g_singleton_disallowed.Get().Get();
50 g_singleton_disallowed.Get().Set(!allowed);
51 return !previous_disallowed;
54 // static
55 void ThreadRestrictions::AssertSingletonAllowed() {
56 if (g_singleton_disallowed.Get().Get()) {
57 LOG(FATAL) << "LazyInstance/Singleton is not allowed to be used on this "
58 << "thread. Most likely it's because this thread is not "
59 << "joinable, so AtExitManager may have deleted the object "
60 << "on shutdown, leading to a potential shutdown crash.";
64 // static
65 void ThreadRestrictions::DisallowWaiting() {
66 g_wait_disallowed.Get().Set(true);
69 // static
70 void ThreadRestrictions::AssertWaitAllowed() {
71 if (g_wait_disallowed.Get().Get()) {
72 LOG(FATAL) << "Waiting is not allowed to be used on this thread to prevent"
73 << "jank and deadlock.";
77 bool ThreadRestrictions::SetWaitAllowed(bool allowed) {
78 bool previous_disallowed = g_wait_disallowed.Get().Get();
79 g_wait_disallowed.Get().Set(!allowed);
80 return !previous_disallowed;
83 } // namespace base
85 #endif // ENABLE_THREAD_RESTRICTIONS