diff options
author | Vicent Marti <vicent@github.com> | 2014-07-03 15:30:38 +0200 |
---|---|---|
committer | Vicent Marti <vicent@github.com> | 2014-07-03 15:30:38 +0200 |
commit | b0ed61f8227cb6fb937f68c9a6750851f3d0632f (patch) | |
tree | 0b8b3a39a36bddcc1b5505cb685eab54d77aae7f /tests | |
parent | 193fe9cbbfd911e240f6d4ab7fed3ec96f35c657 (diff) | |
parent | 905fb5929bb8aa05b640d4dcb8fa611886cbe022 (diff) | |
download | libgit2-b0ed61f8227cb6fb937f68c9a6750851f3d0632f.tar.gz |
Merge pull request #2460 from libgit2/cmn/sched-yield
Move yield to the tests and enable for FreeBSD
Diffstat (limited to 'tests')
-rw-r--r-- | tests/threads/diff.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/threads/diff.c b/tests/threads/diff.c index 79b85800b..c32811469 100644 --- a/tests/threads/diff.c +++ b/tests/threads/diff.c @@ -1,6 +1,20 @@ #include "clar_libgit2.h" #include "thread_helpers.h" +#ifdef GIT_THREADS + +# if defined(GIT_WIN32) +# define git_thread_yield() Sleep(0) +# elif defined(__FreeBSD__) || defined(__MidnightBSD__) || defined(__DragonFly__) +# define git_thread_yield() pthread_yield() +# else +# define git_thread_yield() sched_yield() +# endif + +#else +# define git_thread_yield() (void)0 +#endif + static git_repository *_repo; static git_tree *_a, *_b; static git_atomic _counts[4]; |