diff options
author | Alex Sakhartchouk <alexst@google.com> | 2010-10-12 09:31:10 -0700 |
---|---|---|
committer | Alex Sakhartchouk <alexst@google.com> | 2010-10-12 09:31:10 -0700 |
commit | af55cc711abc51a24d1b33d0a34c55e877711405 (patch) | |
tree | 9383213fac0b0319c778873fb63076f5c892f36d /libs/rs/rsObjectBase.cpp | |
parent | 26ae3904e8050eae655722caf93ee5d3f0ab195a (diff) |
Fixing refcounting debug statements that've gotten bitrotten.
Change-Id: Ie93bf651b9e469b7b4e9cacd8f79b38d04012892
Diffstat (limited to 'libs/rs/rsObjectBase.cpp')
-rw-r--r-- | libs/rs/rsObjectBase.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/rs/rsObjectBase.cpp b/libs/rs/rsObjectBase.cpp index f69cb159b83b..124d5e642b22 100644 --- a/libs/rs/rsObjectBase.cpp +++ b/libs/rs/rsObjectBase.cpp @@ -71,13 +71,13 @@ void ObjectBase::setContext(Context *rsc) void ObjectBase::incUserRef() const { mUserRefCount ++; - //LOGV("ObjectBase %p inc ref %i", this, mRefCount); + //LOGV("ObjectBase %p inc ref %i", this, mUserRefCount); } void ObjectBase::incSysRef() const { mSysRefCount ++; - //LOGV("ObjectBase %p inc ref %i", this, mRefCount); + //LOGV("ObjectBase %p inc ref %i", this, mSysRefCount); } bool ObjectBase::checkDelete() const @@ -96,14 +96,14 @@ bool ObjectBase::decUserRef() const { rsAssert(mUserRefCount > 0); mUserRefCount --; - //dumpObj("decUserRef"); + //dumpLOGV("decUserRef"); return checkDelete(); } bool ObjectBase::zeroUserRef() const { mUserRefCount = 0; - //dumpObj("zeroUserRef"); + //dumpLOGV("zeroUserRef"); return checkDelete(); } @@ -111,7 +111,7 @@ bool ObjectBase::decSysRef() const { rsAssert(mSysRefCount > 0); mSysRefCount --; - //dumpObj("decSysRef"); + //dumpLOGV("decSysRef"); return checkDelete(); } |