issue#11: tests/test-hdr: changed .h file guard prefix to CDSTEST_xxx
authorkhizmax <khizmax@gmail.com>
Thu, 22 Jan 2015 16:43:43 +0000 (19:43 +0300)
committerkhizmax <libcds.dev@gmail.com>
Thu, 22 Jan 2015 21:13:44 +0000 (00:13 +0300)
39 files changed:
tests/test-hdr/map/hdr_cuckoo_map.h
tests/test-hdr/map/hdr_map.h
tests/test-hdr/map/hdr_skiplist_map.h
tests/test-hdr/map/hdr_skiplist_map_rcu.h
tests/test-hdr/map/hdr_striped_map.h
tests/test-hdr/map/print_skiplist_stat.h
tests/test-hdr/ordered_list/hdr_intrusive_lazy.h
tests/test-hdr/ordered_list/hdr_intrusive_michael.h
tests/test-hdr/ordered_list/hdr_lazy.h
tests/test-hdr/ordered_list/hdr_lazy_kv.h
tests/test-hdr/ordered_list/hdr_michael.h
tests/test-hdr/ordered_list/hdr_michael_kv.h
tests/test-hdr/priority_queue/hdr_intrusive_pqueue.h
tests/test-hdr/priority_queue/hdr_pqueue.h
tests/test-hdr/queue/hdr_fcqueue.h
tests/test-hdr/queue/hdr_intrusive_msqueue.h
tests/test-hdr/queue/hdr_intrusive_segmented_queue.h
tests/test-hdr/queue/hdr_queue.h
tests/test-hdr/queue/hdr_segmented_queue.h
tests/test-hdr/set/hdr_cuckoo_set.h
tests/test-hdr/set/hdr_intrusive_cuckoo_set.h
tests/test-hdr/set/hdr_intrusive_set.h
tests/test-hdr/set/hdr_intrusive_skiplist_set.h
tests/test-hdr/set/hdr_intrusive_skiplist_set_rcu.h
tests/test-hdr/set/hdr_intrusive_striped_set.h
tests/test-hdr/set/hdr_set.h
tests/test-hdr/set/hdr_skiplist_set.h
tests/test-hdr/set/hdr_skiplist_set_rcu.h
tests/test-hdr/set/hdr_striped_set.h
tests/test-hdr/set/intrusive_cuckoo_set_common.h
tests/test-hdr/size_check.h
tests/test-hdr/stack/hdr_intrusive_treiber_stack.h
tests/test-hdr/stack/hdr_treiber_stack.h
tests/test-hdr/tree/hdr_ellenbintree_map.h
tests/test-hdr/tree/hdr_ellenbintree_set.h
tests/test-hdr/tree/hdr_intrusive_bintree.h
tests/test-hdr/tree/hdr_intrusive_ellen_bintree_pool_dhp.h
tests/test-hdr/tree/hdr_intrusive_ellen_bintree_pool_hp.h
tests/test-hdr/tree/hdr_intrusive_ellen_bintree_pool_rcu.h

index 92065c0884af4db603b5dc0753d0c084c032438e..aef800949cfe2febe9d289b2c40f4cd1a08e182b 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_CUCKOO_MAP_H
-#define __CDSTEST_HDR_CUCKOO_MAP_H
+#ifndef CDSTEST_HDR_CUCKOO_MAP_H
+#define CDSTEST_HDR_CUCKOO_MAP_H
 #include "size_check.h"
 
 #include "cppunit/cppunit_proxy.h"
@@ -387,4 +387,4 @@ namespace map {
     };
 }   // namespace map
 
-#endif // #ifndef __CDSTEST_HDR_CUCKOO_MAP_H
+#endif // #ifndef CDSTEST_HDR_CUCKOO_MAP_H
index ec6ed42c9a812da9951bbd7ad8a6d44d09186a89..611533ad6dacf6dc42999c3b05b4a2c74f663970 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_MAP_H
-#define __CDSTEST_HDR_MAP_H
+#ifndef CDSTEST_HDR_MAP_H
+#define CDSTEST_HDR_MAP_H
 #include "size_check.h"
 
 #include "cppunit/cppunit_proxy.h"
@@ -983,4 +983,4 @@ namespace map {
     };
 }   // namespace map
 
-#endif // #ifndef __CDSTEST_HDR_MAP_H
+#endif // #ifndef CDSTEST_HDR_MAP_H
index ef474f7506b8ae0f1615573f5ad9c110565b28aa..d919a1d28334544fab35c99e9b23872f69b8b189 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_SKIPLIST_MAP_H
-#define __CDSTEST_HDR_SKIPLIST_MAP_H
+#ifndef CDSTEST_HDR_SKIPLIST_MAP_H
+#define CDSTEST_HDR_SKIPLIST_MAP_H
 
 #include "map/hdr_map.h"
 
@@ -536,4 +536,4 @@ namespace map {
 
 } // namespace map
 
-#endif // #ifndef __CDSTEST_HDR_SKIPLIST_MAP_H
+#endif // #ifndef CDSTEST_HDR_SKIPLIST_MAP_H
index adff9d5fd8ac71756d752d247cfacd93561272a8..6526e2c60c9cb963577689363a0da8ad068410ef 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_SKIPLIST_MAP_RCU_H
-#define __CDSTEST_HDR_SKIPLIST_MAP_RCU_H
+#ifndef CDSTEST_HDR_SKIPLIST_MAP_RCU_H
+#define CDSTEST_HDR_SKIPLIST_MAP_RCU_H
 
 #include "map/hdr_map.h"
 
@@ -512,4 +512,4 @@ namespace map {
 
 } // namespace map
 
-#endif // #ifndef __CDSTEST_HDR_SKIPLIST_MAP_RCU_H
+#endif // #ifndef CDSTEST_HDR_SKIPLIST_MAP_RCU_H
index 06b3c87f0fe445c3a26f85f2f3b1245c24cd99f4..edaade8c00349495aef89af24a24365280b34195 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_STRIPED_MAP_H
-#define __CDSTEST_HDR_STRIPED_MAP_H
+#ifndef CDSTEST_HDR_STRIPED_MAP_H
+#define CDSTEST_HDR_STRIPED_MAP_H
 #include "size_check.h"
 
 #include "cppunit/cppunit_proxy.h"
@@ -576,4 +576,4 @@ namespace map {
     };
 }   // namespace map
 
-#endif // #ifndef __CDSTEST_HDR_STRIPED_MAP_H
+#endif // #ifndef CDSTEST_HDR_STRIPED_MAP_H
index 1f70455c7b07f789c7771a8bb45ed3086cdb4624..bea9d90ef5b37cd131349cdfd564792696538706 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDS_TESTHDR_MAP_PRINT_SKIPLIST_STAT_H
-#define __CDS_TESTHDR_MAP_PRINT_SKIPLIST_STAT_H
+#ifndef CDSTEST_HDR_MAP_PRINT_SKIPLIST_STAT_H
+#define CDSTEST_HDR_MAP_PRINT_SKIPLIST_STAT_H
 
 #include "unit/print_skip_list_stat.h"
 
@@ -41,4 +41,4 @@ namespace misc {
 
 }   // namespace misc
 
-#endif // #ifndef __CDS_TESTHDR_MAP_PRINT_SKIPLIST_STAT_H
+#endif // #ifndef CDSTEST_HDR_MAP_PRINT_SKIPLIST_STAT_H
index 8402f73215ab8c508ecc506b9f92ccd42695c801..c8a7e1d0f668eeb373d9e6c81b0df9bd098dba49 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_LAZY_H
+#define CDSTEST_HDR_INTRUSIVE_LAZY_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/intrusive/details/lazy_list_base.h>
 
@@ -890,3 +893,5 @@ namespace ordlist {
         CPPUNIT_TEST_SUITE_END()
     };
 }   // namespace ordlist
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_LAZY_H
index 52c717351c4421a34b4277019dc21ca44a0ba093..05248f66d8a59137aa73e0131037ab0fa74ac1d3 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_MICHAEL_H
+#define CDSTEST_HDR_INTRUSIVE_MICHAEL_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/intrusive/details/michael_list_base.h>
 
@@ -904,3 +907,5 @@ namespace ordlist {
         CPPUNIT_TEST_SUITE_END()
     };
 }   // namespace ordlist
+
+#endif // CDSTEST_HDR_INTRUSIVE_MICHAEL_H
index 28c388874eb1f34058ec6ddb8035ecfad1090b76..7945d06eef40b3b4156adf0aca2dcfdc4a0b2ba9 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_LAZY_H
+#define CDSTEST_HDR_LAZY_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/container/details/lazy_list_base.h>
 
@@ -811,3 +814,5 @@ namespace ordlist {
     };
 
 }   // namespace ordlist
+
+#endif // #ifndef CDSTEST_HDR_LAZY_H
\ No newline at end of file
index e62dcf3b09b697e0daf67f8d35d83875d1e15ee0..653c2f7a7cabcefc5824065568cf4f3ea6cd2039 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_LAZY_KV_H
+#define CDSTEST_HDR_LAZY_KV_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/container/details/lazy_list_base.h>
 
@@ -722,3 +725,5 @@ namespace ordlist {
     };
 
 }   // namespace ordlist
+
+#endif // #ifndef CDSTEST_HDR_LAZY_KV_H
\ No newline at end of file
index 4672e97191c7e39c94402fc2581494c9493d1f58..c37eaa8e0b9a2a0bd3d9d0e26b263c39cc278f33 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_MICHAEL_H
+#define CDSTEST_HDR_MICHAEL_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/container/details/michael_list_base.h>
 
@@ -813,3 +816,5 @@ namespace ordlist {
     };
 
 }   // namespace ordlist
+
+#endif // #ifndef CDSTEST_HDR_MICHAEL_H
index d51a08f82986eb4bac4684fa30555e74e412bbc6..4f467b3175d28d2a4eb361fbba5e5ac79b8d206f 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_MICHAEL_KV_H
+#define CDSTEST_HDR_MICHAEL_KV_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/container/details/michael_list_base.h>
 
@@ -736,3 +739,5 @@ namespace ordlist {
     };
 
 }   // namespace ordlist
+
+#endif // #ifndef CDSTEST_HDR_MICHAEL_KV_H
index aafa82c5d88b682bb26b068a0d0105e374993538..268f1c136abc57afcb013ffc845687115cf168d6 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_INTRUSIVE_PQUEUE_H
-#define CDSHDRTEST_INTRUSIVE_PQUEUE_H
+#ifndef CDSTEST_HDR_INTRUSIVE_PQUEUE_H
+#define CDSTEST_HDR_INTRUSIVE_PQUEUE_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -211,4 +211,4 @@ namespace priority_queue {
 
 } // namespace priority_queue
 
-#endif // #ifndef CDSHDRTEST_INTRUSIVE_PQUEUE_H
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_PQUEUE_H
index 5a03d54a3eb92b5f1f9fbe83d4d3b453701fd69b..eadbc7e269f92121760667f84133c83424be1e10 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_PQUEUE_H
-#define CDSHDRTEST_PQUEUE_H
+#ifndef CDSTEST_HDR_PQUEUE_H
+#define CDSTEST_HDR_PQUEUE_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -365,4 +365,4 @@ namespace std {
     };
 }
 
-#endif // #ifndef CDSHDRTEST_PQUEUE_H
+#endif // #ifndef CDSTEST_HDR_PQUEUE_H
index 411bf9daa8dfa4b427c9066f1f7c530b64f6d7f0..606c21a36a41a2b25d3308e948119fe824c56644 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSUNIT_HDR_FCQUEUE_H
-#define __CDSUNIT_HDR_FCQUEUE_H
+#ifndef CDSTEST_HDR_FCQUEUE_H
+#define CDSTEST_HDR_FCQUEUE_H
 
 #include "cppunit/cppunit_proxy.h"
 #include <cds/details/defs.h>
@@ -162,4 +162,4 @@ namespace queue {
     };
 } // namespace queue
 
-#endif // #ifndef __CDSUNIT_HDR_FCQUEUE_H
+#endif // #ifndef CDSTEST_HDR_FCQUEUE_H
index 61624b653f17057a9de6d5d219bbc1483af2ac77..238b107925648c2fd98d150685aeefd30300dd05 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRSUSIVE_MSQUEUE_H
+#define CDSTEST_HDR_INTRSUSIVE_MSQUEUE_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/intrusive/details/base.h>
 
@@ -516,3 +519,5 @@ namespace queue {
         CPPUNIT_TEST_SUITE_END()
     };
 }   // namespace queue
+
+#endif // #ifndef CDSTEST_HDR_INTRSUSIVE_MSQUEUE_H
index b3578ca4295d43a547b44baeb7130fdfc26a3e30..4f2ba09d4b6ceeb446aa474de846ded483940976 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSHDR_QUEUE_INTRUSIVE_SEGMENTED_QUEUE_H
-#define __CDSHDR_QUEUE_INTRUSIVE_SEGMENTED_QUEUE_H
+#ifndef CDSTEST_HDR_INTRUSIVE_SEGMENTED_QUEUE_H
+#define CDSTEST_HDR_INTRUSIVE_SEGMENTED_QUEUE_H
 
 #include "cppunit/cppunit_proxy.h"
 #include <cds/intrusive/details/base.h>
@@ -265,4 +265,4 @@ namespace queue {
 
 } // namespace queue
 
-#endif // __CDSHDR_QUEUE_INTRUSIVE_SEGMENTED_QUEUE_H
+#endif // CDSTEST_HDR_INTRUSIVE_SEGMENTED_QUEUE_H
index 68e99904bfa061e21ab83d975ce508c0d9ded3d3..c5d19e489f160ee261eb6b1dec7188ccddace7ad 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSUNIT_QUEUE_HDR_H
-#define __CDSUNIT_QUEUE_HDR_H
+#ifndef CDSTEST_HDR_QUEUE_H
+#define CDSTEST_HDR_QUEUE_H
 
 #include "cppunit/cppunit_proxy.h"
 #include <cds/details/defs.h>
@@ -458,4 +458,4 @@ namespace queue {
     };
 } // namespace queue
 
-#endif // #ifndef __CDSUNIT_QUEUE_HDR_H
+#endif // #ifndef CDSTEST_HDR_QUEUE_H
index cc53cbb54fd19a5d65711540d238b4fb7724cfae..a6aa97625af23d35cdfdd75f2646831d84006153 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSHDR_QUEUE_SEGMENTED_QUEUE_H
-#define __CDSHDR_QUEUE_SEGMENTED_QUEUE_H
+#ifndef CDSTEST_HDR_QUEUE_SEGMENTED_QUEUE_H
+#define CDSTEST_HDR_QUEUE_SEGMENTED_QUEUE_H
 
 #include "cppunit/cppunit_proxy.h"
 #include <cds/intrusive/details/base.h>
@@ -226,9 +226,9 @@ namespace queue {
             CPPUNIT_TEST( SegmQueue_DHP_mutex_cacheline_padding )
             CPPUNIT_TEST( SegmQueue_DHP_shuffle_cacheline_padding )
             CPPUNIT_TEST( SegmQueue_DHP_stat_cacheline_padding )
-            CPPUNIT_TEST_SUITE_END()
+        CPPUNIT_TEST_SUITE_END()
 
     };
 } // namespace queue
 
-#endif //#ifndef __CDSHDR_QUEUE_SEGMENTED_QUEUE_H
+#endif //#ifndef CDSTEST_HDR_QUEUE_SEGMENTED_QUEUE_H
index ce7d5fba7afcc699e76a432b80294a802f7e2693..8c80865378ca600bde8843e38784d4f5c020738a 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_CUCKOO_SET_H
-#define __CDSTEST_HDR_CUCKOO_SET_H
+#ifndef CDSTEST_HDR_CUCKOO_SET_H
+#define CDSTEST_HDR_CUCKOO_SET_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -603,4 +603,4 @@ namespace set {
 
 } // namespace set
 
-#endif // #ifndef __CDSTEST_HDR_CUCKOO_SET_H
+#endif // #ifndef CDSTEST_HDR_CUCKOO_SET_H
index 1738ae2100ca041dc7955828b5c303419e4a7007..db09fd5eed0f87f777ef18177563083376d7339a 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_H
+#define CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/opt/hash.h>
 
@@ -649,3 +652,5 @@ namespace set {
         CPPUNIT_TEST_SUITE_END()
     };
 } // namespace set
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_H
index 65d78ce0aa5c774dabec994fc9e18f9f5b5a50cc..48ed8c98c638f8a850235fd6e5c64f35d0f2a6ab 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_SET_H
+#define CDSTEST_HDR_INTRUSIVE_SET_H
+
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
 
@@ -1866,3 +1869,5 @@ namespace set {
     };
 
 }   // namespace set
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_SET_H
\ No newline at end of file
index 873955404e61181d7ef5b980e2f0b1f1c3e3cf92..60549192b3d0db35605cff6a44eb6e9faad8c0a3 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_SKIPLIST_SET_H
+#define CDSTEST_HDR_INTRUSIVE_SKIPLIST_SET_H
+
 #include "set/hdr_intrusive_set.h"
 
 namespace set {
@@ -756,3 +759,5 @@ namespace set {
         CPPUNIT_TEST_SUITE_END()
     };
 } // namespace set
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_SKIPLIST_SET_H
index 1b4fd925f2397a332f14971e374251a4c914a387..685747538c35e60c1dfc83afba1ce32075e08019 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_SKIPLIST_SET_RCU_H
+#define CDSTEST_HDR_INTRUSIVE_SKIPLIST_SET_RCU_H
+
 #include "set/hdr_intrusive_set.h"
 
 namespace set {
@@ -786,3 +789,5 @@ namespace set {
         CPPUNIT_TEST_SUITE_END()
     };
 } // namespace set
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_SKIPLIST_SET_RCU_H
index 42abe4fa767b182c02ddd8120612da4866913bb5..36243a6580fe2a947331e3c2644e85bddb7775f0 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_STRIPED_SET_H
+#define CDSTEST_HDR_INTRUSIVE_STRIPED_SET_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/opt/hash.h>
 
@@ -732,3 +735,5 @@ namespace set {
         CPPUNIT_TEST_SUITE_END()
     };
 } // namespace set
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_STRIPED_SET_H
index 4e2281e7f92ae0d3b47659d68304a3b650a2c4c9..61dc034cb88f340c5a376cd0d664926c0260b577 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_SET_H
-#define __CDSTEST_HDR_SET_H
+#ifndef CDSTEST_HDR_SET_H
+#define CDSTEST_HDR_SET_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -1156,4 +1156,4 @@ namespace set {
 
 } // namespace set
 
-#endif // __CDSTEST_HDR_SET_H
+#endif // CDSTEST_HDR_SET_H
index da528d3b3db7724d62a579d1747ae9d4a843e0dd..73317055188731d8a7412f9d03d4707eca1b6892 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_SKIPLIST_SET_H
+#define CDSTEST_HDR_SKIPLIST_SET_H
+
 #include "set/hdr_set.h"
 
 namespace set {
@@ -574,3 +577,5 @@ namespace set {
 
     };
 }
+
+#endif // #ifndef CDSTEST_HDR_SKIPLIST_SET_H
index 027ee0a57f153ae280fc6b631132caa46ae91c08..0f8305cb93776c5a9df13c64d56aa701215ef993 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_SKIPLIST_SET_RCU_H
+#define CDSTEST_HDR_SKIPLIST_SET_RCU_H
+
 #include "set/hdr_set.h"
 
 namespace set {
@@ -507,3 +510,5 @@ namespace set {
 
     };
 }
+
+#endif // #ifndef CDSTEST_HDR_SKIPLIST_SET_RCU_H
index e0b5a86ff9a942eed5c006d8fee7c8b45922f258..e9b0e5aa7f69eb208668e260c0e4f271ae6c276c 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_HDR_STRIPED_SET_H
-#define __CDSTEST_HDR_STRIPED_SET_H
+#ifndef CDSTEST_HDR_STRIPED_SET_H
+#define CDSTEST_HDR_STRIPED_SET_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -750,4 +750,4 @@ namespace set {
     };
 } // namespace set
 
-#endif // #ifndef __CDSTEST_HDR_STRIPED_SET_H
+#endif // #ifndef CDSTEST_HDR_STRIPED_SET_H
index 967f2ff2b5e6f7def1405fcdf96ff36fec50d9de..cd77555b065cd72cc0fda8aaf45ad1bb9b35c93c 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_COMMON_H
+#define CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_COMMON_H
+
 namespace set {
     namespace {
 
@@ -49,3 +52,5 @@ namespace set {
 
     }
 } // namespace set
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_COMMON_H
index 8b507bf2acf4b0d262a8f374737cbd0d219808ef..7f2ff85d102382f876ad5c0f9ebe71b01f13c69e 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef __CDSTEST_SIZE_CHECK_H
-#define __CDSTEST_SIZE_CHECK_H
+#ifndef CDSTEST_SIZE_CHECK_H
+#define CDSTEST_SIZE_CHECK_H
 
 #include <cds/algo/atomic.h>
 
@@ -33,4 +33,4 @@ namespace misc {
 
 } // namespace misc
 
-#endif // #ifndef __CDSTEST_SIZE_CHECK_H
+#endif // #ifndef CDSTEST_SIZE_CHECK_H
index 1370d152214e331b94d694f04c1355d7d8f660b6..7cc7239ecea0eecae5b0f82439845f4179b6c13c 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_INTRUSIVE_TREIBER_STACK_H
+#define CDSTEST_HDR_INTRUSIVE_TREIBER_STACK_H
+
 #include "cppunit/cppunit_proxy.h"
 #include <cds/intrusive/details/single_link_struct.h>
 
@@ -200,3 +203,5 @@ namespace stack {
     };
 
 } // namespace stack
+
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_TREIBER_STACK_H
index 2110ae00e86b5f7a61b15e65f0afb34d9c3b4529..1a6c79f2ae80ac445f94ca8903ebb91485e334bd 100644 (file)
@@ -1,5 +1,8 @@
 //$$CDS-header$$
 
+#ifndef CDSTEST_HDR_TREIBER_STACK_H
+#define CDSTEST_HDR_TREIBER_STACK_H
+
 #include "cppunit/cppunit_proxy.h"
 
 namespace stack {
@@ -130,3 +133,4 @@ namespace stack {
     };
 }   // namespace stack
 
+#endif // #ifndef CDSTEST_HDR_TREIBER_STACK_H
index d2c9051948bce05abb7e85528eaa0ae323d8d5a3..0053187d865d10899faadf7950cf9630f4f56ff0 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_ELLENBINTREE_MAP_H
-#define CDSHDRTEST_ELLENBINTREE_MAP_H
+#ifndef CDSTEST_HDR_ELLENBINTREE_MAP_H
+#define CDSTEST_HDR_ELLENBINTREE_MAP_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -723,4 +723,4 @@ namespace tree {
     };
 } // namespace tree
 
-#endif // #ifndef CDSHDRTEST_ELLENBINTREE_MAP_H
+#endif // #ifndef CDSTEST_HDR_ELLENBINTREE_MAP_H
index 0e3363f07b7000005e53de9095844bcc75d1b9d1..5d3b2aefd0c2a6365a7979edfd90dfec73f6b505 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_ELLENBINTREE_SET_H
-#define CDSHDRTEST_ELLENBINTREE_SET_H
+#ifndef CDSTEST_HDR_ELLENBINTREE_SET_H
+#define CDSTEST_HDR_ELLENBINTREE_SET_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -822,4 +822,4 @@ namespace tree {
     };
 } // namespace tree
 
-#endif // #ifndef CDSHDRTEST_ELLENBINTREE_SET_H
+#endif // #ifndef CDSTEST_HDR_ELLENBINTREE_SET_H
index cf9a5ec8718413dc561e7240f46d9be8f3c1286c..af2fb8acc8575a53c3605b85ee1705375f739ff1 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_INTRUSIVE_BINTREE_H
-#define CDSHDRTEST_INTRUSIVE_BINTREE_H
+#ifndef CDSTEST_HDR_INTRUSIVE_BINTREE_H
+#define CDSTEST_HDR_INTRUSIVE_BINTREE_H
 
 #include "cppunit/cppunit_proxy.h"
 #include "size_check.h"
@@ -1246,4 +1246,4 @@ namespace tree {
     };
 } // namespace tree
 
-#endif // #ifndef CDSHDRTEST_INTRUSIVE_BINTREE_H
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_BINTREE_H
index 9cbef05732e927d92ed1cd724e71387aaee64eb7..db75229592001bfa85efd52a3490c1648eae7076 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_DHP_H
-#define CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_DHP_H
+#ifndef CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_DHP_H
+#define CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_DHP_H
 
 #include "tree/hdr_intrusive_bintree.h"
 #include <cds/intrusive/ellen_bintree_dhp.h>
@@ -57,4 +57,4 @@ namespace tree {
 
 } // namespace tree
 
-#endif // #ifndef CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_DHP_H
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_DHP_H
index f18a0689d476e3218b6a8e4bcf1be0c72a1f5701..47ab28286695de17061cf628ddb66d43344bb124 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_HP_H
-#define CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_HP_H
+#ifndef CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_HP_H
+#define CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_HP_H
 
 #include "tree/hdr_intrusive_bintree.h"
 #include <cds/intrusive/ellen_bintree_hp.h>
@@ -56,4 +56,4 @@ namespace tree {
 
 } // namespace tree
 
-#endif // #ifndef CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_HP_H
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_HP_H
index ee2cf6278208c1491e2c2f290d9983a825966026..d6bb3672e641a5b355fa48be8c3826668783dc1e 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
-#ifndef CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_RCU_H
-#define CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_RCU_H
+#ifndef CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_RCU_H
+#define CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_RCU_H
 
 #include "tree/hdr_intrusive_bintree.h"
 #include <cds/urcu/general_instant.h>
@@ -60,4 +60,4 @@ namespace tree {
 
 } // namespace tree
 
-#endif // #ifndef CDSHDRTEST_INTRUSIVE_ELLEN_BINTREE_POOL_RCU_H
+#endif // #ifndef CDSTEST_HDR_INTRUSIVE_ELLEN_BINTREE_POOL_RCU_H