HP and DHP SMR totally refactored
[libcds.git] / cds / threading / details / cxx11_manager.h
index 84960a58cc02225c0dc33d62eb8b43f3f1b93990..353b18fc227a4cdf9bf3ee29f2a2306b7cc8198e 100644 (file)
@@ -123,30 +123,6 @@ namespace cds { namespace threading {
                 return p;
             }
 
-            /// Get gc::HP thread GC implementation for current thread
-            /**
-                The object returned may be uninitialized if you did not call attachThread in the beginning of thread execution
-                or if you did not use gc::HP.
-                To initialize gc::HP GC you must constuct cds::gc::HP object in the beginning of your application
-            */
-            static gc::HP::thread_gc_impl&   getHZPGC()
-            {
-                assert( _threadData()->m_hpManager != nullptr );
-                return *(_threadData()->m_hpManager);
-            }
-
-            /// Get gc::DHP thread GC implementation for current thread
-            /**
-                The object returned may be uninitialized if you did not call attachThread in the beginning of thread execution
-                or if you did not use gc::DHP.
-                To initialize gc::DHP GC you must constuct cds::gc::DHP object in the beginning of your application
-            */
-            static gc::DHP::thread_gc_impl&   getDHPGC()
-            {
-                assert( _threadData()->m_dhpManager != nullptr );
-                return *(_threadData()->m_dhpManager);
-            }
-
             //@cond
             static size_t fake_current_processor()
             {