[master] c8ccfa4bb Also increase the stack for GCOVING

Poul-Henning Kamp phk at FreeBSD.org
Wed Mar 3 13:00:07 UTC 2021


commit c8ccfa4bb213ad404f7a4eb04f01ef255c0798cd
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Wed Mar 3 12:58:09 2021 +0000

    Also increase the stack for GCOVING

diff --git a/bin/varnishd/mgt/mgt_param.c b/bin/varnishd/mgt/mgt_param.c
index cdd9a01af..6ead58a5f 100644
--- a/bin/varnishd/mgt/mgt_param.c
+++ b/bin/varnishd/mgt/mgt_param.c
@@ -683,7 +683,7 @@ MCF_InitParams(struct cli *cli)
 	low = sysconf(_SC_THREAD_STACK_MIN);
 	MCF_ParamConf(MCF_MINIMUM, "thread_pool_stack", "%jdb", (intmax_t)low);
 
-#if defined(__SANITIZER) || __has_feature(address_sanitizer)
+#if defined(__SANITIZER) || __has_feature(address_sanitizer) || defined(GCOVING)
 	def = 92 * 1024;
 #endif
 


More information about the varnish-commit mailing list