From: khizmax Date: Sat, 18 Jun 2016 15:02:17 +0000 (+0300) Subject: Fixed a typo X-Git-Tag: v2.2.0~208 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=commitdiff_plain;h=3e32c66d811212721345770f1835454356f6883f Fixed a typo --- diff --git a/cds/algo/flat_combining/kernel.h b/cds/algo/flat_combining/kernel.h index 06d4f60c..20f03240 100644 --- a/cds/algo/flat_combining/kernel.h +++ b/cds/algo/flat_combining/kernel.h @@ -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; } diff --git a/test/include/cds_test/stat_flat_combining_out.h b/test/include/cds_test/stat_flat_combining_out.h index d18b0a97..72da575f 100644 --- a/test/include/cds_test/stat_flat_combining_out.h +++ b/test/include/cds_test/stat_flat_combining_out.h @@ -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 )