From: Mathieu Desnoyers Date: Tue, 20 Dec 2011 16:01:16 +0000 (-0500) Subject: Add missing REMOVAL_OWNER_FLAG comment to cds_lfht_node comment X-Git-Tag: v0.7.0~43^2~11 X-Git-Url: https://git.lttng.org/?p=urcu.git;a=commitdiff_plain;h=3f2f3714e585efa0d009c62cf4a380b4cf28e505 Add missing REMOVAL_OWNER_FLAG comment to cds_lfht_node comment Reported-by: Lai Jiangshan Signed-off-by: Mathieu Desnoyers --- diff --git a/urcu/rculfhash.h b/urcu/rculfhash.h index 647592b..f337622 100644 --- a/urcu/rculfhash.h +++ b/urcu/rculfhash.h @@ -51,7 +51,7 @@ extern "C" { * of the hash value for cds_lfht APIs. */ struct cds_lfht_node { - struct cds_lfht_node *next; /* ptr | BUCKET_FLAG | REMOVED_FLAG */ + struct cds_lfht_node *next; /* ptr | REMOVAL_OWNER_FLAG | BUCKET_FLAG | REMOVED_FLAG */ unsigned long reverse_hash; } __attribute__((aligned(8)));