Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
9d77d83a
Commit
9d77d83a
authored
Jun 07, 2011
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "threads: Fix TLS declarations"
This commit uploaded an old broken test. Oops!
parent
1097dacd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
55 deletions
+32
-55
include/git2/thread-utils.h
+30
-37
tests/resources/testrepo.git/packed-refs
+0
-0
tests/t10-refs.c
+2
-18
No files found.
include/git2/thread-utils.h
View file @
9d77d83a
...
...
@@ -31,48 +31,41 @@
* http://predef.sourceforge.net/precomp.html
*/
#ifdef GIT_THREADS
# define GIT_HAS_TLS 1
#define GIT_HAS_TLS 1
/* No TLS in Cygwin */
# if defined(__CHECKER__) || defined(__CYGWIN__)
# undef GIT_HAS_TLS
# define GIT_TLS
#if defined(__APPLE__) && defined(__MACH__)
# undef GIT_TLS
# define GIT_TLS
/* No TLS in Mach binaries for Mac OS X */
# elif defined(__APPLE__) && defined(__MACH__)
# undef GIT_TLS
# define GIT_TLS
#elif defined(__GNUC__) || \
defined(__SUNPRO_C) || \
defined(__SUNPRO_CC) || \
defined(__xlc__) || \
defined(__xlC__)
# define GIT_TLS __thread
/* Normal TLS for GCC */
# elif defined(__GNUC__) || \
defined(__SUNPRO_C) || \
defined(__SUNPRO_CC) || \
defined(__xlc__) || \
defined(__xlC__)
# define GIT_TLS __thread
#elif defined(__INTEL_COMPILER)
# if defined(_WIN32) || defined(_WIN32_CE)
# define GIT_TLS __declspec(thread)
# else
# define GIT_TLS __thread
# endif
/* ICC may run on Windows or Linux */
# elif defined(__INTEL_COMPILER)
# if defined(_WIN32) || defined(_WIN32_CE)
# define GIT_TLS __declspec(thread)
# else
# define GIT_TLS __thread
# endif
#elif defined(_WIN32) || \
defined(_WIN32_CE) || \
defined(__BORLANDC__)
# define GIT_TLS __declspec(thread)
/* Declspec for MSVC in Win32 */
# elif defined(_WIN32) || \
defined(_WIN32_CE) || \
defined(__BORLANDC__)
# define GIT_TLS __declspec(thread)
#else
# undef GIT_HAS_TLS
# define GIT_TLS
/* nothing: tls vars are thread-global */
#endif
/* Other platform; no TLS */
# else
# undef GIT_HAS_TLS
# define GIT_TLS
/* nothing: tls vars are thread-global */
# endif
#else
/* Disable TLS if libgit2 is not threadsafe */
# define GIT_TLS
#endif
/* GIT_THREADS */
/* sparse and cygwin don't grok thread-local variables */
#if defined(__CHECKER__) || defined(__CYGWIN__)
# undef GIT_HAS_TLS
# undef GIT_TLS
# define GIT_TLS
#endif
#endif
/* INCLUDE_git_thread_utils_h__ */
tests/resources/testrepo.git/packed-refs
View file @
9d77d83a
This diff is collapsed.
Click to expand it.
tests/t10-refs.c
View file @
9d77d83a
...
...
@@ -931,24 +931,9 @@ BEGIN_TEST(list1, "try to list only the symbolic references")
git_repository_free
(
repo
);
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
)
/*
ADD_TEST(readtag0);
ADD_TEST
(
readtag0
);
ADD_TEST
(
readtag1
);
ADD_TEST
(
readsym0
);
...
...
@@ -986,6 +971,5 @@ BEGIN_SUITE(refs)
ADD_TEST
(
delete0
);
ADD_TEST
(
list0
);
ADD_TEST(list1); */
ADD_TEST
(
corruption0
);
ADD_TEST
(
list1
);
END_SUITE
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment