From 19fa40200e72e17587434bcdc0b0afd1e20965d2 Mon Sep 17 00:00:00 2001 From: khizmax Date: Sun, 10 Jan 2016 13:40:07 +0300 Subject: [PATCH] Fixed typo --- cds/algo/flat_combining.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cds/algo/flat_combining.h b/cds/algo/flat_combining.h index d5324c8c..15f27dcc 100644 --- a/cds/algo/flat_combining.h +++ b/cds/algo/flat_combining.h @@ -180,7 +180,7 @@ namespace cds { namespace algo { void onCombining() { ++m_nCombiningCount; } void onCompactPublicationList() { ++m_nCompactPublicationList; } void onDeactivatePubRecord() { ++m_nDeactivatePubRecord; } - void onActivatPubRecord() { ++m_nActivatePubRecord; } + void onActivatePubRecord() { ++m_nActivatePubRecord; } void onCreatePubRecord() { ++m_nPubRecordCreated; } void onDeletePubRecord() { ++m_nPubRecordDeteted; } void onAcquirePubRecord() { ++m_nAcquirePubRecCount; } @@ -196,7 +196,7 @@ namespace cds { namespace algo { void onCombining() {} void onCompactPublicationList() {} void onDeactivatePubRecord() {} - void onActivatPubRecord() {} + void onActivatePubRecord() {} void onCreatePubRecord() {} void onDeletePubRecord() {} void onAcquirePubRecord() {} @@ -616,7 +616,7 @@ namespace cds { namespace algo { // Failed CAS changes p } while ( !m_pHead->pNext.compare_exchange_weak( p, static_cast(pRec), memory_model::memory_order_release, atomics::memory_order_relaxed )); - m_Stat.onActivatPubRecord(); + m_Stat.onActivatePubRecord(); } } } -- 2.34.1