X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Frculfhash.h;h=7afd6244a97df896cc54af017e8f217edda926a5;hp=c3c1cbc2b797afbbc022f1bedbc146abd7cdb61e;hb=b198f0fda77c816d80f63cfa2e71a7e0b4496736;hpb=adc0de68ccd78689659ed49d4b3d5d36c6720e20 diff --git a/urcu/rculfhash.h b/urcu/rculfhash.h index c3c1cbc..7afd624 100644 --- a/urcu/rculfhash.h +++ b/urcu/rculfhash.h @@ -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)));