rculfhash: remove now unneeded gc flag (combine with removed)
[urcu.git] / urcu / rculfhash.h
index c3c1cbc2b797afbbc022f1bedbc146abd7cdb61e..7afd6244a97df896cc54af017e8f217edda926a5 100644 (file)
@@ -34,11 +34,11 @@ extern "C" {
 
 /*
  * struct cds_lfht_node and struct _cds_lfht_node should be aligned on
- * 8-bytes boundaries because the two lower bits are used as flags.
+ * 4-bytes boundaries because the two lower bits are used as flags.
  */
 
 struct _cds_lfht_node {
-       struct cds_lfht_node *next;     /* ptr | DUMMY_FLAG | GC_FLAG | REMOVED_FLAG */
+       struct cds_lfht_node *next;     /* ptr | DUMMY_FLAG | REMOVED_FLAG */
        unsigned long reverse_hash;
 } __attribute__((aligned(8)));
 
This page took 0.023013 seconds and 4 git commands to generate.