citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 6ea98fd377f5245edc595d83f51a3f71c029ae27
parent 83c5d809b858aff10df7305bf8dcc984988d6929
Author: Kyle Milz <kyle@0x30.net>
Date:   Wed, 22 Jun 2016 22:45:42 -0600

lib: warn about how many nodes we settled on too

Diffstat:
Mlib/runtime.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/runtime.c b/lib/runtime.c @@ -164,7 +164,7 @@ settle(void) ++spun; } while (previous_total != total); - warnx("spun %u times", spun); + warnx("spun %u times, settled on %u nodes", spun, total); } /* Sets up connection to the server socket and drops into an io loop. */