]> git.ipfire.org Git - thirdparty/git.git/commit - pager.c
pager: do wait_for_pager on signal death
authorJeff King <peff@peff.net>
Thu, 22 Jan 2009 06:03:28 +0000 (01:03 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 22 Jan 2009 06:46:53 +0000 (22:46 -0800)
commita3da8821208d6243dc5530d668f7c8f089814899
treea0ba9685d325f80b8ef826a29114d5940b2186bf
parent57b235a4bc8884a57c6f863605a54b7bfceb0997
pager: do wait_for_pager on signal death

Since ea27a18 (spawn pager via run_command interface), the
original git process actually does git work, and the pager
is a child process (actually, on Windows it has always been
that way, since Windows lacks fork). After spawning the
pager, we register an atexit() handler that waits for the
pager to finish.

Unfortunately, that handler does not always run. In
particular, if git is killed by a signal, then we exit
immediately. The calling shell then thinks that git is done;
however, the pager is still trying to run and impact the
terminal. The result can be seen by running a long git
process with a pager (e.g., "git log -p") and hitting ^C.
Depending on your config, you should see the shell prompt,
but pressing a key causes the pager to do any terminal
de-initialization sequence.

This patch just intercepts any death-dealing signals and
waits for the pager before dying. Under typical less
configuration, that means hitting ^C will cause git to stop
generating output, but the pager will keep running.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
pager.c