diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-10-30 12:10:27 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-30 12:10:27 -0700 |
commit | 414b7033b16f23b724ea81d71c4b74ef42edad17 (patch) | |
tree | 31ad340d06db608b6420cf71495b96984e5acada /builtin/gc.c | |
parent | Merge branch 'hn/log-graph-color-octopus' (diff) | |
parent | gc: remove gc.pid file at end of execution (diff) | |
download | tgif-414b7033b16f23b724ea81d71c4b74ef42edad17.tar.xz |
Merge branch 'nd/gc-lock-against-each-other'
* nd/gc-lock-against-each-other:
gc: remove gc.pid file at end of execution
Diffstat (limited to 'builtin/gc.c')
-rw-r--r-- | builtin/gc.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/builtin/gc.c b/builtin/gc.c index 891a2c2ecb..c14190f840 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -14,6 +14,7 @@ #include "cache.h" #include "parse-options.h" #include "run-command.h" +#include "sigchain.h" #include "argv-array.h" #define FAILED_RUN "failed to run %s" @@ -35,6 +36,21 @@ static struct argv_array repack = ARGV_ARRAY_INIT; static struct argv_array prune = ARGV_ARRAY_INIT; static struct argv_array rerere = ARGV_ARRAY_INIT; +static char *pidfile; + +static void remove_pidfile(void) +{ + if (pidfile) + unlink(pidfile); +} + +static void remove_pidfile_on_signal(int signo) +{ + remove_pidfile(); + sigchain_pop(signo); + raise(signo); +} + static int gc_config(const char *var, const char *value, void *cb) { if (!strcmp(var, "gc.packrefs")) { @@ -179,6 +195,10 @@ static const char *lock_repo_for_gc(int force, pid_t* ret_pid) FILE *fp; int fd, should_exit; + if (pidfile) + /* already locked */ + return NULL; + if (gethostname(my_host, sizeof(my_host))) strcpy(my_host, "unknown"); @@ -219,6 +239,10 @@ static const char *lock_repo_for_gc(int force, pid_t* ret_pid) strbuf_release(&sb); commit_lock_file(&lock); + pidfile = git_pathdup("gc.pid"); + sigchain_push_common(remove_pidfile_on_signal); + atexit(remove_pidfile); + return NULL; } |