From 95747f9e8c005c716d6e7f216e8fd9b66871dbff Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 28 Oct 2015 15:57:22 -0400 Subject: [PATCH] Fix: rculfhash only needs to include urcu-pointers.h rculfhash is not meant to use a specific urcu flavor, but rather receive the flavor to use as parameter to _cds_lfht_new(). All we need is the API of urcu-pointers.h, so include that instead. Signed-off-by: Mathieu Desnoyers --- rculfhash.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rculfhash.c b/rculfhash.c index 6a41b92..3e78731 100644 --- a/rculfhash.c +++ b/rculfhash.c @@ -264,10 +264,11 @@ #include #include #include +#include #include "config.h" #include "compat-getcpu.h" -#include +#include #include #include #include -- 2.34.1