summaryrefslogtreecommitdiff
path: root/src/hash.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-09-11 12:45:20 -0700
committerRussell Belfer <rb@github.com>2013-09-17 09:31:45 -0700
commita3aa5f4d5dcbe038f1d1c5ff40eed29d27953fbe (patch)
tree6ef7a6b5bdfc26e10279c2629f58036f4025f199 /src/hash.h
parente7d0ced2192c5efeea6d9f5667d366891010b86a (diff)
downloadlibgit2-a3aa5f4d5dcbe038f1d1c5ff40eed29d27953fbe.tar.gz
Add simple global shutdown hooks
Increasingly there are a number of components that want to do some cleanup at global shutdown time (at least if there are not going to be memory leaks). This creates a very simple system of shutdown hooks that will be invoked by git_threads_shutdown. Right now, the maximum number of hooks is hardcoded, but since adding a hook is not a public API, it should be fine and I thought it was better to start off with really simple code.
Diffstat (limited to 'src/hash.h')
-rw-r--r--src/hash.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/hash.h b/src/hash.h
index 5b848981f..c47f33549 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -13,8 +13,6 @@ typedef struct git_hash_prov git_hash_prov;
typedef struct git_hash_ctx git_hash_ctx;
int git_hash_global_init(void);
-void git_hash_global_shutdown(void);
-
int git_hash_ctx_init(git_hash_ctx *ctx);
void git_hash_ctx_cleanup(git_hash_ctx *ctx);