diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2014-10-23 17:34:41 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2014-11-07 21:36:40 +0100 |
commit | bc540ff79173b3182206db5eb322048626b81119 (patch) | |
tree | 4b2cb3c08f07ff7062dc1a033b4554a79bd418b8 /include/git2/global.h | |
parent | 4e1b3b3b7186b017223b8302a51289ff92ccba25 (diff) | |
download | libgit2-cmn/global-init.tar.gz |
Rename git_threads_ to git_libgit2_cmn/global-init
This describes their purpose better, as we now initialize ssl and some
other global stuff in there. Calling the init function is not something
which has been optional for a while now.
Diffstat (limited to 'include/git2/global.h')
-rw-r--r-- | include/git2/global.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/git2/global.h b/include/git2/global.h new file mode 100644 index 000000000..4f90c4c20 --- /dev/null +++ b/include/git2/global.h @@ -0,0 +1,38 @@ +/* + * Copyright (C) the libgit2 contributors. All rights reserved. + * + * This file is part of libgit2, distributed under the GNU GPL v2 with + * a Linking Exception. For full terms see the included COPYING file. + */ +#ifndef INCLUDE_git_global_h__ +#define INCLUDE_git_global_h__ + +#include "common.h" + +GIT_BEGIN_DECL + +/** + * Init the global state + * + * This function must the called before any other libgit2 function in + * order to set up global state and threading. + * + * This function may be called multiple times. + * + * @return 0 or an error code + */ +GIT_EXTERN(int) git_libgit2_init(void); + +/** + * Shutdown the global state + * + * Clean up the global state and threading context after calling it as + * many times as `git_libgit2_init()` was called. + * + */ +GIT_EXTERN(void) git_libgit2_shutdown(void); + +/** @} */ +GIT_END_DECL +#endif + |