split_michael_rcu_gpb.cpp 640 B

123456789101112131415161718
  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/general_buffered.h>
  6. #include "test_split_michael_rcu.h"
  7. namespace {
  8. typedef cds::urcu::general_buffered<> rcu_implementation;
  9. typedef cds::urcu::general_buffered_stripped rcu_implementation_stripped;
  10. } // namespace
  11. INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB, SplitListMichaelMap, rcu_implementation );
  12. INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB_stripped, SplitListMichaelMap, rcu_implementation_stripped );