CLEANUP: pool: only include pool-os from pool.c not pool.h

There's no need for the low-level pool functions to be known from all
callers anymore, they're only used by pool.c. Let's reduce the amount
of header files processed.
This commit is contained in:
Willy Tarreau 2022-12-08 17:26:50 +01:00
parent 67f89c527f
commit 76a97a98ca
2 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,6 @@
#include <haproxy/api.h>
#include <haproxy/freq_ctr.h>
#include <haproxy/list.h>
#include <haproxy/pool-os.h>
#include <haproxy/pool-t.h>
#include <haproxy/thread.h>

View File

@ -23,6 +23,7 @@
#include <haproxy/global.h>
#include <haproxy/list.h>
#include <haproxy/pool.h>
#include <haproxy/pool-os.h>
#include <haproxy/sc_strm.h>
#include <haproxy/stats-t.h>
#include <haproxy/stconn.h>