diff options
| author | Patrick Steinhardt <ps@pks.im> | 2016-06-20 18:21:42 +0200 |
|---|---|---|
| committer | Patrick Steinhardt <ps@pks.im> | 2016-06-20 19:50:18 +0200 |
| commit | 8aaa9fb6238336b313766d7bd9c20cff07cb840b (patch) | |
| tree | f6c0f9cb5bbb3316bfbe63aa85000d6e885c765f /src/thread-utils.h | |
| parent | a342e870fcce7f524b54e5671cab4b0702e7540f (diff) | |
| download | libgit2-8aaa9fb6238336b313766d7bd9c20cff07cb840b.tar.gz | |
win32: rename pthread.{c,h} to thread.{c,h}
The old pthread-file did re-implement the pthreads API with exact symbol
matching. As the thread-abstraction has now been split up between Unix- and
Windows-specific files within the `git_` namespace to avoid symbol-clashes
between libgit2 and pthreads, the rewritten wrappers have nothing to do with
pthreads anymore.
Rename the Windows-specific pthread-files to honor this change.
Diffstat (limited to 'src/thread-utils.h')
| -rw-r--r-- | src/thread-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread-utils.h b/src/thread-utils.h index f75e44087..f0161989f 100644 --- a/src/thread-utils.h +++ b/src/thread-utils.h @@ -41,7 +41,7 @@ typedef git_atomic git_atomic_ssize; #ifdef GIT_THREADS #ifdef GIT_WIN32 -# include "win32/pthread.h" +# include "win32/thread.h" #else # include "unix/pthread.h" #endif |
