diff options
author | Edward Thomson <ethomson@microsoft.com> | 2015-02-23 11:18:52 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@microsoft.com> | 2015-02-23 11:19:32 -0500 |
commit | ecf1c3c3589229e5d26ead78607d6abbb881c6d8 (patch) | |
tree | a19ad079523d81d09115954148388b9eea531862 /README.md | |
parent | 366e53d3da72805a3db1a1e77d4666416fcb5a93 (diff) | |
download | libgit2-ecf1c3c3589229e5d26ead78607d6abbb881c6d8.tar.gz |
README: provide some more explanation about TLS
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -70,7 +70,10 @@ before calling any other libgit2 functions. You can call this function many time git_libgit2_shutdown(); -will free the resources. +will free the resources. Note that if you have worker threads, you should +call `git_libgit2_shutdown` *after* those threads have exited. If you +require assistance coordinating this, simply have the worker threads call +`git_libgit2_init` at startup and `git_libgit2_shutdown` at shutdown. Threading ========= |