Fixed a typo
authorkhizmax <libcds.dev@gmail.com>
Sat, 18 Jun 2016 15:02:17 +0000 (18:02 +0300)
committerkhizmax <libcds.dev@gmail.com>
Sat, 18 Jun 2016 15:02:17 +0000 (18:02 +0300)
cds/algo/flat_combining/kernel.h
test/include/cds_test/stat_flat_combining_out.h

index 06d4f60c1d8d6f2445b092f41732928b45f37db2..20f032404dd03d190bdd88734dbcbac776aa6e83 100644 (file)
@@ -111,7 +111,7 @@ namespace cds { namespace algo {
             counter_type    m_nDeactivatePubRecord; ///< How many publication records were deactivated during compacting
             counter_type    m_nActivatePubRecord;   ///< Count of publication record activating
             counter_type    m_nPubRecordCreated ;   ///< Count of created publication records
-            counter_type    m_nPubRecordDeteted ;   ///< Count of deleted publication records
+            counter_type    m_nPubRecordDeleted ;   ///< Count of deleted publication records
             counter_type    m_nPassiveWaitCall;     ///< Count of passive waiting call (\p kernel::wait_for_combining())
             counter_type    m_nPassiveWaitIteration;///< Count of iteration inside passive waiting
             counter_type    m_nPassiveWaitWakeup;   ///< Count of forcing wake-up of passive wait cycle
@@ -136,7 +136,7 @@ namespace cds { namespace algo {
             void    onDeactivatePubRecord()     { ++m_nDeactivatePubRecord;     }
             void    onActivatePubRecord()       { ++m_nActivatePubRecord;       }
             void    onCreatePubRecord()         { ++m_nPubRecordCreated;        }
-            void    onDeletePubRecord()         { ++m_nPubRecordDeteted;        }
+            void    onDeletePubRecord()         { ++m_nPubRecordDeleted;        }
             void    onPassiveWait()             { ++m_nPassiveWaitCall;         }
             void    onPassiveWaitIteration()    { ++m_nPassiveWaitIteration;    }
             void    onPassiveWaitWakeup()       { ++m_nPassiveWaitWakeup;       }
index d18b0a973eb0f068a6a3e17bc4515268935a303f..72da575ff58453d55f29b6b5d8e5c59c03f07cae 100644 (file)
@@ -50,7 +50,7 @@ namespace cds_test {
             << CDSSTRESS_STAT_OUT( s, m_nDeactivatePubRecord )
             << CDSSTRESS_STAT_OUT( s, m_nActivatePubRecord )
             << CDSSTRESS_STAT_OUT( s, m_nPubRecordCreated )
-            << CDSSTRESS_STAT_OUT( s, m_nPubRecordDeteted )
+            << CDSSTRESS_STAT_OUT( s, m_nPubRecordDeleted )
             << CDSSTRESS_STAT_OUT( s, m_nPassiveWaitCall )
             << CDSSTRESS_STAT_OUT( s, m_nPassiveWaitIteration )
             << CDSSTRESS_STAT_OUT( s, m_nPassiveWaitWakeup )