Convert process time to days if applicable

With big multicore machines, it's easy to accumulate process time.
This commit is contained in:
David Zarzycki 2021-04-10 08:02:59 -04:00 committed by BenBE
parent 0006cc51b7
commit f3d9ecaa62
1 changed files with 5 additions and 1 deletions

View File

@ -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 {