| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/threading/thread_restrictions.h" | 5 #include "base/threading/thread_restrictions.h" |
| 6 | 6 |
| 7 #if DCHECK_IS_ON() | 7 #if DCHECK_IS_ON() |
| 8 | 8 |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 // static | 28 // static |
| 29 bool ThreadRestrictions::SetIOAllowed(bool allowed) { | 29 bool ThreadRestrictions::SetIOAllowed(bool allowed) { |
| 30 bool previous_disallowed = g_io_disallowed.Get().Get(); | 30 bool previous_disallowed = g_io_disallowed.Get().Get(); |
| 31 g_io_disallowed.Get().Set(!allowed); | 31 g_io_disallowed.Get().Set(!allowed); |
| 32 return !previous_disallowed; | 32 return !previous_disallowed; |
| 33 } | 33 } |
| 34 | 34 |
| 35 // static | 35 // static |
| 36 void ThreadRestrictions::AssertIOAllowed() { | 36 void ThreadRestrictions::AssertIOAllowed() { |
| 37 if (g_io_disallowed.Get().Get()) { | 37 if (g_io_disallowed.Get().Get()) { |
| 38 NOTREACHED() << | 38 NOTREACHED() << "Function marked as IO-only was called from a thread that " |
| 39 "Function marked as IO-only was called from a thread that " | 39 "disallows IO! If this thread really should be allowed to " |
| 40 "disallows IO! If this thread really should be allowed to " | 40 "make IO calls, adjust the call to " |
| 41 "make IO calls, adjust the call to " | 41 "base::ThreadRestrictions::SetIOAllowed() in this thread's " |
| 42 "base::ThreadRestrictions::SetIOAllowed() in this thread's " | 42 "startup. If this task is running inside the " |
| 43 "startup."; | 43 "TaskScheduler, the TaskRunner used to post it needs to " |
| 44 "have MayBlock() in its TaskTraits."; |
| 44 } | 45 } |
| 45 } | 46 } |
| 46 | 47 |
| 47 // static | 48 // static |
| 48 bool ThreadRestrictions::SetSingletonAllowed(bool allowed) { | 49 bool ThreadRestrictions::SetSingletonAllowed(bool allowed) { |
| 49 bool previous_disallowed = g_singleton_disallowed.Get().Get(); | 50 bool previous_disallowed = g_singleton_disallowed.Get().Get(); |
| 50 g_singleton_disallowed.Get().Set(!allowed); | 51 g_singleton_disallowed.Get().Set(!allowed); |
| 51 return !previous_disallowed; | 52 return !previous_disallowed; |
| 52 } | 53 } |
| 53 | 54 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 67 | 68 |
| 68 // static | 69 // static |
| 69 void ThreadRestrictions::DisallowWaiting() { | 70 void ThreadRestrictions::DisallowWaiting() { |
| 70 g_wait_disallowed.Get().Set(true); | 71 g_wait_disallowed.Get().Set(true); |
| 71 } | 72 } |
| 72 | 73 |
| 73 // static | 74 // static |
| 74 void ThreadRestrictions::AssertWaitAllowed() { | 75 void ThreadRestrictions::AssertWaitAllowed() { |
| 75 if (g_wait_disallowed.Get().Get()) { | 76 if (g_wait_disallowed.Get().Get()) { |
| 76 NOTREACHED() << "Waiting is not allowed to be used on this thread to " | 77 NOTREACHED() << "Waiting is not allowed to be used on this thread to " |
| 77 << "prevent jank and deadlock."; | 78 << "prevent jank and deadlock. If this task is running " |
| 79 "inside the TaskScheduler, the TaskRunner used to post it " |
| 80 "needs to have WithBaseSyncPrimitives() in its TaskTraits."; |
| 78 } | 81 } |
| 79 } | 82 } |
| 80 | 83 |
| 81 bool ThreadRestrictions::SetWaitAllowed(bool allowed) { | 84 bool ThreadRestrictions::SetWaitAllowed(bool allowed) { |
| 82 bool previous_disallowed = g_wait_disallowed.Get().Get(); | 85 bool previous_disallowed = g_wait_disallowed.Get().Get(); |
| 83 g_wait_disallowed.Get().Set(!allowed); | 86 g_wait_disallowed.Get().Set(!allowed); |
| 84 return !previous_disallowed; | 87 return !previous_disallowed; |
| 85 } | 88 } |
| 86 | 89 |
| 87 } // namespace base | 90 } // namespace base |
| 88 | 91 |
| 89 #endif // DCHECK_IS_ON() | 92 #endif // DCHECK_IS_ON() |
| OLD | NEW |