From f3d9ecaa626f2f9124f5c53b083511572ef47a66 Mon Sep 17 00:00:00 2001 From: David Zarzycki Date: Sat, 10 Apr 2021 08:02:59 -0400 Subject: Convert process time to days if applicable With big multicore machines, it's easy to accumulate process time. --- Process.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Process.c') diff --git a/Process.c b/Process.c index 6eecddfc..1ca942a3 100644 --- a/Process.c +++ b/Process.c @@ -150,11 +150,15 @@ void Process_printTime(RichString* str, unsigned long long totalHundredths) { unsigned long long totalSeconds = totalHundredths / 100; unsigned long long hours = totalSeconds / 3600; + unsigned long long days = totalSeconds / 86400; int minutes = (totalSeconds / 60) % 60; int seconds = totalSeconds % 60; int hundredths = totalHundredths - (totalSeconds * 100); char buffer[10]; - if (hours >= 100) { + if (days >= 100) { + xSnprintf(buffer, sizeof(buffer), "%7llud ", days); + RichString_appendAscii(str, CRT_colors[LARGE_NUMBER], buffer); + } else if (hours >= 100) { xSnprintf(buffer, sizeof(buffer), "%7lluh ", hours); RichString_appendAscii(str, CRT_colors[LARGE_NUMBER], buffer); } else { -- cgit v1.2.3