diff --git a/src/debug.c b/src/debug.c index eef4da8cf6..02fd710009 100644 --- a/src/debug.c +++ b/src/debug.c @@ -156,6 +156,7 @@ struct post_mortem { struct thread_ctx *thread_ctx; // pointer to ha_thread_ctx struct list *pools; // pointer to the head of the pools list struct proxy **proxies; // pointer to the head of the proxies list + struct global *global; // pointer to the struct global /* info about identified distinct components (executable, shared libs, etc). * These can be all listed at once in gdb using: @@ -2564,6 +2565,7 @@ static int feed_post_mortem() post_mortem.thread_ctx = ha_thread_ctx; post_mortem.pools = &pools; post_mortem.proxies = &proxies_list; + post_mortem.global = &global; return ERR_NONE; }