Rename class cds::gc::PTB to cds::gc::DHP
[libcds.git] / cds / threading / details / wintls_manager.h
index 47b2de3c82dd70e00a92f83e11b3aef7157f1c9b..5ffdc9817d9e7f0a88caf14b5cf21d974aa7672e 100644 (file)
@@ -207,15 +207,15 @@ namespace cds { namespace threading {
                 return *(_threadData( do_getData )->m_hpManager);
             }
 
-            /// Get gc::PTB thread GC implementation for current thread
+            /// 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::PTB.
-                To initialize gc::PTB GC you must constuct cds::gc::PTB object in the beginning of your application
+                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::PTB::thread_gc_impl&   getPTBGC()
+            static gc::DHP::thread_gc_impl&   getDHPGC()
             {
-                return *(_threadData( do_getData )->m_ptbManager);
+                return *(_threadData( do_getData )->m_dhpManager);
             }
 
             //@cond