Am 23.08.25 um 23:33 schrieb Junio C Hamano: > Yes, the use of itimer to only change the flag without doing > anything funky has been a very safe way to use signals, doing only > absolutely minimal thing in the signal handler. Having to rearm the > signal in the signal handler in Carlo's patch made me feel dirtier. While this is clean on POSIX, it isn't the only platform where Git runs. On Windows, this part of the progress indication is as dirty as it can get. Getting rid of it is a big bonus in my book. > But looking at the wallclock once every iteration of a busy loop? > > Operating system folks may have worked hard to minimize the cost of > system calls to gettimeofday() in order to help applications that do > so, but I somehow feel even dirtier to hear proposal to do so to > replace a signal that we set and forget, to be reminded once every > second. I think that ship has sailed already. Look at display_throughput(). One of the first things it does is to look at the wallclock a.k.a. getnanotime(). That said, I am not very happy about the new calls introduced in display_progress(), either. I'll see whether I can produce some performance measurements. I observe a behavior change with delayed progress indicators that I have to understand and fix it before I can submit the cleaned up patches. -- Hannes