diff options
author | Maria Matejka <mq@ucw.cz> | 2022-11-01 08:56:26 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-11-01 16:38:24 +0100 |
commit | 37b644413723670928f6b54f2abe0c852eb0b652 (patch) | |
tree | d8e8023f23803d0117cf02f7ea1922d5d8e5f531 /conf/conf.h | |
parent | 5aebce5e0cc59c4c8459ab92a201df5868f46e7a (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.h | 2 |
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) |