From: Willy Tarreau Date: Mon, 29 Jun 2020 08:11:24 +0000 (+0200) Subject: CLEANUP: pool: only include the type files from types X-Git-Tag: v2.2-dev12~62 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c03d7632a52bd4b24f1dcc0c1cc1b03db44df95a;p=thirdparty%2Fhaproxy.git 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. --- 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.