X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=urcu%2Frculfhash.h;h=6e4f6040094f81eba2736718263eaf66f88ea97e;hb=a6b3a718379cfd3c61fd9fcde32efcfda55dfc91;hp=a1ae0f5a8fef9e80e39d8f21750005b565810cd7;hpb=04db56f85e2cd2abb05e4ef14990e99a1058d0df;p=urcu.git diff --git a/urcu/rculfhash.h b/urcu/rculfhash.h index a1ae0f5..6e4f604 100644 --- a/urcu/rculfhash.h +++ b/urcu/rculfhash.h @@ -32,7 +32,6 @@ extern "C" { #endif - /* * cds_lfht_node: Contains the next pointers and reverse-hash * value required for lookup and traversal of the hash table. @@ -49,7 +48,7 @@ extern "C" { * of the hash value for cds_lfht APIs. */ struct cds_lfht_node { - struct cds_lfht_node *next; /* ptr | DUMMY_FLAG | REMOVED_FLAG */ + struct cds_lfht_node *next; /* ptr | BUCKET_FLAG | REMOVED_FLAG */ unsigned long reverse_hash; } __attribute__((aligned(4)));