split_michael_rcu_shb.cpp 722 B

12345678910111213141516171819202122
  1. // Copyright (c) 2006-2018 Maxim Khizhinsky
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #include <cds/urcu/signal_buffered.h>
  6. #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
  7. #include "test_split_michael_rcu.h"
  8. namespace {
  9. typedef cds::urcu::signal_buffered<> rcu_implementation;
  10. typedef cds::urcu::signal_buffered_stripped rcu_implementation_stripped;
  11. } // namespace
  12. INSTANTIATE_TYPED_TEST_CASE_P( RCU_SHB, SplitListMichaelSet, rcu_implementation );
  13. INSTANTIATE_TYPED_TEST_CASE_P( RCU_SHB_stripped, SplitListMichaelSet, rcu_implementation_stripped );
  14. #endif // CDS_URCU_SIGNAL_HANDLING_ENABLED