mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-24 00:58:22 +00:00

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.
24 lines
370 B
C
24 lines
370 B
C
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <time.h>
|
|
#include <stdarg.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <regex.h>
|
|
|
|
#include <io.h>
|
|
#include <direct.h>
|
|
#ifdef GIT_THREADS
|
|
#include "win32/thread.h"
|
|
#endif
|
|
|
|
#include "git2.h"
|
|
#include "common.h"
|