Commit a342e870 by Patrick Steinhardt

threads: remove now-useless typedefs

parent 4f10c1e6
......@@ -23,11 +23,6 @@ typedef struct {
void *result;
} git_thread;
typedef int pthread_mutexattr_t;
typedef int pthread_condattr_t;
typedef int pthread_attr_t;
typedef int pthread_rwlockattr_t;
typedef CRITICAL_SECTION git_mutex;
typedef HANDLE git_cond;
......@@ -40,8 +35,6 @@ typedef struct {
} native;
} git_rwlock;
#define PTHREAD_MUTEX_INITIALIZER {(void*)-1}
int git_thread_create(git_thread *GIT_RESTRICT,
void *(*) (void *),
void *GIT_RESTRICT);
......
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