summaryrefslogtreecommitdiff
path: root/conf/conf.h
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2022-11-01 08:56:26 +0100
committerMaria Matejka <mq@ucw.cz>2022-11-01 16:38:24 +0100
commit37b644413723670928f6b54f2abe0c852eb0b652 (patch)
treed8e8023f23803d0117cf02f7ea1922d5d8e5f531 /conf/conf.h
parent5aebce5e0cc59c4c8459ab92a201df5868f46e7a (diff)
Moved config-related allocations to config_pool and showing its size in memory usage
Diffstat (limited to 'conf/conf.h')
-rw-r--r--conf/conf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/conf.h b/conf/conf.h
index 96c873df..5ec924b0 100644
--- a/conf/conf.h
+++ b/conf/conf.h
@@ -96,7 +96,7 @@ void order_shutdown(int gr);
/* Pools */
-
+extern pool *config_pool;
extern linpool *cfg_mem;
#define cfg_alloc(size) lp_alloc(cfg_mem, size)