diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-22 20:11:02 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-22 20:11:02 +0000 |
commit | 9239781f12f6360c6c03ae01dd36a122def7887f (patch) | |
tree | 24269716be1ed13d4c011488a0ac5ee36ca871b1 /base/ref_counted.cc | |
parent | 5bfafb06880152214274bb43ee82dd1ea2edfdb2 (diff) | |
download | chromium_src-9239781f12f6360c6c03ae01dd36a122def7887f.zip chromium_src-9239781f12f6360c6c03ae01dd36a122def7887f.tar.gz chromium_src-9239781f12f6360c6c03ae01dd36a122def7887f.tar.bz2 |
Add (currently disabled) RefCountedBase check. (2nd try)
Review URL: http://codereview.chromium.org/18438
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8499 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/ref_counted.cc')
-rw-r--r-- | base/ref_counted.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/base/ref_counted.cc b/base/ref_counted.cc index dfb3698..597c92c 100644 --- a/base/ref_counted.cc +++ b/base/ref_counted.cc @@ -5,6 +5,7 @@ #include "base/ref_counted.h" #include "base/logging.h" +#include "base/thread_collision_warner.h" namespace base { @@ -23,6 +24,9 @@ RefCountedBase::~RefCountedBase() { } void RefCountedBase::AddRef() { + // TODO(maruel): Add back once it doesn't assert 500 times/sec. + // Current thread books the critical section "AddRelease" without release it. + // DFAKE_SCOPED_LOCK_THREAD_LOCKED(add_release_); #ifndef NDEBUG DCHECK(!in_dtor_); #endif @@ -30,6 +34,9 @@ void RefCountedBase::AddRef() { } bool RefCountedBase::Release() { + // TODO(maruel): Add back once it doesn't assert 500 times/sec. + // Current thread books the critical section "AddRelease" without release it. + // DFAKE_SCOPED_LOCK_THREAD_LOCKED(add_release_); #ifndef NDEBUG DCHECK(!in_dtor_); #endif |