diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-03-17 22:11:35 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-17 22:16:54 +0200 |
commit | cb3e1334e8a5c3003fa0419442fc06d45508ac31 (patch) | |
tree | 6be2facd0014fff4a4769b6a6a082c722c03ad87 /src/win32/pthread.h | |
parent | 12d67a2a4e7f673e6239ac8865dfe8cb6ddcae53 (diff) | |
download | libgit2-threadsafe.tar.gz |
Fix the threading implementationthreadsafe
Diffstat (limited to 'src/win32/pthread.h')
-rw-r--r-- | src/win32/pthread.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/win32/pthread.h b/src/win32/pthread.h index ff694e303..10949f1eb 100644 --- a/src/win32/pthread.h +++ b/src/win32/pthread.h @@ -40,7 +40,6 @@ typedef int pthread_mutexattr_t; typedef int pthread_condattr_t; typedef int pthread_attr_t; typedef CRITICAL_SECTION pthread_mutex_t; -typedef CONDITION_VARIABLE pthread_cond_t; typedef HANDLE pthread_t; #define PTHREAD_MUTEX_INITIALIZER {(void*)-1}; @@ -56,12 +55,6 @@ int pthread_mutex_destroy(pthread_mutex_t *); int pthread_mutex_lock(pthread_mutex_t *); int pthread_mutex_unlock(pthread_mutex_t *); -int pthread_cond_init(pthread_cond_t *GIT_RESTRICT, const pthread_condattr_t *GIT_RESTRICT); -int pthread_cond_destroy(pthread_cond_t *); -int pthread_cond_broadcast(pthread_cond_t *); -int pthread_cond_signal(pthread_cond_t *); -int pthread_cond_wait(pthread_cond_t *GIT_RESTRICT, pthread_mutex_t *GIT_RESTRICT); - int pthread_num_processors_np(void); -#endif
\ No newline at end of file +#endif |