From 7e4ef1e64cf639083df342e2e0c904c5207b56cb Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Thu, 6 Mar 2025 04:00:54 -0700 Subject: stack.c.gen: DIAG: Include thread-counts in the output --- build-aux/stack.c.gen | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'build-aux') diff --git a/build-aux/stack.c.gen b/build-aux/stack.c.gen index 50831c2..b6e49a5 100755 --- a/build-aux/stack.c.gen +++ b/build-aux/stack.c.gen @@ -1304,7 +1304,10 @@ def main( name = location_xform(str(qname)) if val.nstatic == 0: continue - print(f"{name.ljust(namelen)} {str(val.nstatic).rjust(numlen)}") + print( + f"{name.ljust(namelen)} {str(val.nstatic).rjust(numlen)}" + + (f" * {val.cnt}" if val.cnt != 1 else "") + ) print(sep2) print(f"{'Total'.ljust(namelen)} {str(nsum).rjust(numlen)}") print(f"{'Maximum'.ljust(namelen)} {str(nmax).rjust(numlen)}") -- cgit v1.2.3-2-g168b