Commit aca1d9ef authored by Maged Michael's avatar Maged Michael Committed by Facebook Github Bot

hazptr: remove logging of reclaim

Summary: Removed instances of logging reclaim_

Reviewed By: mzlee

Differential Revision: D6864752

fbshipit-source-id: d36205052799d2307e1cd6a0307c094ac3fa8b26
parent fce4eabe
......@@ -718,7 +718,7 @@ inline hazptr_domain::~hazptr_domain() {
for (auto p = retired; p; p = next) {
next = p->next_;
DCHECK(p != next);
HAZPTR_DEBUG_PRINT(this << " " << p << " " << p->reclaim_);
HAZPTR_DEBUG_PRINT(this << " " << p);
(*(p->reclaim_))(p);
}
retired = retired_.exchange(nullptr);
......@@ -828,7 +828,7 @@ inline void hazptr_domain::bulkReclaim() {
next = p->next_;
DCHECK(p != next);
if (hs.count(p->getObjPtr()) == 0) {
HAZPTR_DEBUG_PRINT(this << " " << p << " " << p->reclaim_);
HAZPTR_DEBUG_PRINT(this << " " << p);
(*(p->reclaim_))(p);
} else {
p->next_ = retired;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment