Commit 64fe8c62 by Vicent Marti

threads: Fix TLS declarations

Cleanup the thread-utils file. Do not define TLS if libgit2 is not
threadsafe.
parent 7d170a4b
...@@ -31,41 +31,48 @@ ...@@ -31,41 +31,48 @@
* http://predef.sourceforge.net/precomp.html * http://predef.sourceforge.net/precomp.html
*/ */
#define GIT_HAS_TLS 1 #ifdef GIT_THREADS
# define GIT_HAS_TLS 1
#if defined(__APPLE__) && defined(__MACH__) /* No TLS in Cygwin */
# undef GIT_TLS # if defined(__CHECKER__) || defined(__CYGWIN__)
# define GIT_TLS # undef GIT_HAS_TLS
# define GIT_TLS
#elif defined(__GNUC__) || \ /* No TLS in Mach binaries for Mac OS X */
defined(__SUNPRO_C) || \ # elif defined(__APPLE__) && defined(__MACH__)
defined(__SUNPRO_CC) || \ # undef GIT_TLS
defined(__xlc__) || \ # define GIT_TLS
defined(__xlC__)
# define GIT_TLS __thread
#elif defined(__INTEL_COMPILER) /* Normal TLS for GCC */
# if defined(_WIN32) || defined(_WIN32_CE) # elif defined(__GNUC__) || \
# define GIT_TLS __declspec(thread) defined(__SUNPRO_C) || \
# else defined(__SUNPRO_CC) || \
# define GIT_TLS __thread defined(__xlc__) || \
# endif defined(__xlC__)
# define GIT_TLS __thread
#elif defined(_WIN32) || \ /* ICC may run on Windows or Linux */
defined(_WIN32_CE) || \ # elif defined(__INTEL_COMPILER)
defined(__BORLANDC__) # if defined(_WIN32) || defined(_WIN32_CE)
# define GIT_TLS __declspec(thread) # define GIT_TLS __declspec(thread)
# else
# define GIT_TLS __thread
# endif
#else /* Declspec for MSVC in Win32 */
# undef GIT_HAS_TLS # elif defined(_WIN32) || \
# define GIT_TLS /* nothing: tls vars are thread-global */ defined(_WIN32_CE) || \
#endif defined(__BORLANDC__)
# define GIT_TLS __declspec(thread)
/* sparse and cygwin don't grok thread-local variables */ /* Other platform; no TLS */
#if defined(__CHECKER__) || defined(__CYGWIN__) # else
# undef GIT_HAS_TLS # undef GIT_HAS_TLS
# undef GIT_TLS # define GIT_TLS /* nothing: tls vars are thread-global */
# define GIT_TLS # endif
#endif #else /* Disable TLS if libgit2 is not threadsafe */
# define GIT_TLS
#endif /* GIT_THREADS */
#endif /* INCLUDE_git_thread_utils_h__ */ #endif /* INCLUDE_git_thread_utils_h__ */
...@@ -899,9 +899,24 @@ BEGIN_TEST(list1, "try to list only the symbolic references") ...@@ -899,9 +899,24 @@ BEGIN_TEST(list1, "try to list only the symbolic references")
git_repository_free(repo); git_repository_free(repo);
END_TEST END_TEST
BEGIN_TEST(corruption0, "Check a the packed-refs file is not corrupted")
git_reference *ref;
git_repository *repo;
must_pass(git_repository_open(&repo, "/Users/vicent/src/github/.git"));
/* Lookup the reference */
must_pass(git_reference_lookup(&ref, repo, "refs/heads/redcarpet-deploy"));
/* Now that the reference is deleted... */
must_pass(git_reference_delete(ref));
git_repository_free(repo);
END_TEST
BEGIN_SUITE(refs) BEGIN_SUITE(refs)
ADD_TEST(readtag0); /* ADD_TEST(readtag0);
ADD_TEST(readtag1); ADD_TEST(readtag1);
ADD_TEST(readsym0); ADD_TEST(readsym0);
...@@ -938,5 +953,6 @@ BEGIN_SUITE(refs) ...@@ -938,5 +953,6 @@ BEGIN_SUITE(refs)
ADD_TEST(delete0); ADD_TEST(delete0);
ADD_TEST(list0); ADD_TEST(list0);
ADD_TEST(list1); ADD_TEST(list1); */
ADD_TEST(corruption0);
END_SUITE END_SUITE
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment