From a342e870fcce7f524b54e5671cab4b0702e7540f Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Mon, 20 Jun 2016 18:28:00 +0200 Subject: [PATCH] threads: remove now-useless typedefs --- src/win32/pthread.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/win32/pthread.h b/src/win32/pthread.h index 821bb64ee..977d2dfab 100644 --- a/src/win32/pthread.h +++ b/src/win32/pthread.h @@ -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); -- 2.39.5