From c03d7632a52bd4b24f1dcc0c1cc1b03db44df95a Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 29 Jun 2020 10:11:24 +0200 Subject: [PATCH] CLEANUP: pool: only include the type files from types pool-t.h was mistakenly including the full-blown includes for threads, lists and api instead of the types, and as such, CONFIG_HAP_LOCAL_POOLS and CONFIG_HAP_LOCKLESS_POOLS were not visible everywhere. --- include/haproxy/pool-t.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/haproxy/pool-t.h b/include/haproxy/pool-t.h index 1d7fcbb8c2..e81004cf80 100644 --- a/include/haproxy/pool-t.h +++ b/include/haproxy/pool-t.h @@ -22,9 +22,9 @@ #ifndef _HAPROXY_POOL_T_H #define _HAPROXY_POOL_T_H -#include -#include -#include +#include +#include +#include /* On architectures supporting threads and double-word CAS, we can implement * lock-less memory pools. This isn't supported for debugging modes however. -- 2.47.3