I was also interested, so I dig into the source code and found this:
if (hours >= 100) { snprintf(buffer, 10, "%7lluh ", hours); RichString_append(str, CRT_colors[LARGE_NUMBER], buffer); } else { if (hours) { snprintf(buffer, 10, "%2lluh", hours); RichString_append(str, CRT_colors[LARGE_NUMBER], buffer); snprintf(buffer, 10, "%02d:%02d ", minutes, seconds); } else { snprintf(buffer, 10, "%2d:%02d.%02d ", minutes, seconds, hundredths); } RichString_append(str, CRT_colors[DEFAULT_COLOR], buffer); }
Thus, it looks like as soon as the processor time exceeds one hour, part of the hour is simply highlighted in red (or something like CRT_colors[LARGE_NUMBER] ).
Note that the time format changes over time:
4:33.42 - minutes / seconds / millions
18h26:41 - hours / minutes / seconds
101h hours> 100
source share