Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Side by Side Diff: base/memory/weak_ptr.cc

Issue 20163004: base: Re-apply WeakPtr support for SequencedWorkerPools, fixing deadlock (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix deadlock issue. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/memory/weak_ptr.h" 5 #include "base/memory/weak_ptr.h"
6 6
7 namespace base { 7 namespace base {
8 namespace internal { 8 namespace internal {
9 9
10 WeakReference::Flag::Flag() : is_valid_(true) { 10 WeakReference::Flag::Flag() : is_valid_(true) {
11 // Flags only become bound when checked for validity, or invalidated, 11 // Flags only become bound when checked for validity, or invalidated,
12 // so that we can check that later validity/invalidation operations on 12 // so that we can check that later validity/invalidation operations on
13 // the same Flag take place on the same thread. 13 // the same Flag take place on the same sequenced thread.
14 thread_checker_.DetachFromThread(); 14 sequence_checker_.DetachFromSequence();
15 } 15 }
16 16
17 void WeakReference::Flag::Invalidate() { 17 void WeakReference::Flag::Invalidate() {
18 // The flag being invalidated with a single ref implies that there are no 18 // The flag being invalidated with a single ref implies that there are no
19 // weak pointers in existence. Allow deletion on other thread in this case. 19 // weak pointers in existence. Allow deletion on other thread in this case.
20 DCHECK(thread_checker_.CalledOnValidThread() || HasOneRef()) 20 DCHECK(HasOneRef() || sequence_checker_.CalledOnValidSequencedThread())
tommycli 2013/07/25 15:57:09 Changing the order of the conditionals also coinci
akalin 2013/07/25 19:36:38 I'm a bit wary about changing the order here. The
tommycli 2013/07/25 19:54:59 Done. Sounds good. On 2013/07/25 19:36:38, akalin
21 << "WeakPtrs must be checked and invalidated on the same thread."; 21 << "WeakPtrs must be invalidated on the same sequenced thread.";
22 is_valid_ = false; 22 is_valid_ = false;
23 } 23 }
24 24
25 bool WeakReference::Flag::IsValid() const { 25 bool WeakReference::Flag::IsValid() const {
26 DCHECK(thread_checker_.CalledOnValidThread()) 26 DCHECK(sequence_checker_.CalledOnValidSequencedThread())
27 << "WeakPtrs must be checked and invalidated on the same thread."; 27 << "WeakPtrs must be checked on the same sequenced thread.";
28 return is_valid_; 28 return is_valid_;
29 } 29 }
30 30
31 WeakReference::Flag::~Flag() { 31 WeakReference::Flag::~Flag() {
32 } 32 }
33 33
34 WeakReference::WeakReference() { 34 WeakReference::WeakReference() {
35 } 35 }
36 36
37 WeakReference::WeakReference(const Flag* flag) : flag_(flag) { 37 WeakReference::WeakReference(const Flag* flag) : flag_(flag) {
(...skipping 30 matching lines...) Expand all
68 } 68 }
69 69
70 WeakPtrBase::~WeakPtrBase() { 70 WeakPtrBase::~WeakPtrBase() {
71 } 71 }
72 72
73 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) { 73 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
74 } 74 }
75 75
76 } // namespace internal 76 } // namespace internal
77 } // namespace base 77 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698