diff options
| author | Russell Belfer <rb@github.com> | 2013-09-11 12:45:20 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2013-09-17 09:31:45 -0700 |
| commit | a3aa5f4d5dcbe038f1d1c5ff40eed29d27953fbe (patch) | |
| tree | 6ef7a6b5bdfc26e10279c2629f58036f4025f199 /src/fileops.h | |
| parent | e7d0ced2192c5efeea6d9f5667d366891010b86a (diff) | |
| download | libgit2-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/fileops.h')
| -rw-r--r-- | src/fileops.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fileops.h b/src/fileops.h index 02f79b9e7..16bc58e93 100644 --- a/src/fileops.h +++ b/src/fileops.h @@ -354,11 +354,6 @@ extern int git_futils_dirs_get_str( extern int git_futils_dirs_set(git_futils_dir_t which, const char *paths); /** - * Release / reset all search paths - */ -extern void git_futils_dirs_free(void); - -/** * Create a "fake" symlink (text file containing the target path). * * @param new symlink file to be created |
