Commit 1b825316 by Patrick Steinhardt Committed by Carlos Martín Nieto

threads: remove unused function pthread_cond_broadcast

parent 40b243bf
...@@ -52,7 +52,6 @@ typedef git_atomic git_atomic_ssize; ...@@ -52,7 +52,6 @@ typedef git_atomic git_atomic_ssize;
#define git_cond_free(c) pthread_cond_destroy(c) #define git_cond_free(c) pthread_cond_destroy(c)
#define git_cond_wait(c, l) pthread_cond_wait(c, l) #define git_cond_wait(c, l) pthread_cond_wait(c, l)
#define git_cond_signal(c) pthread_cond_signal(c) #define git_cond_signal(c) pthread_cond_signal(c)
#define git_cond_broadcast(c) pthread_cond_broadcast(c)
/* Pthread (-ish) rwlock /* Pthread (-ish) rwlock
* *
......
...@@ -156,10 +156,6 @@ int pthread_cond_signal(pthread_cond_t *cond) ...@@ -156,10 +156,6 @@ int pthread_cond_signal(pthread_cond_t *cond)
return 0; return 0;
} }
/* pthread_cond_broadcast is not implemented because doing so with just
* Win32 events is quite complicated, and no caller in libgit2 uses it
* yet.
*/
int pthread_num_processors_np(void) int pthread_num_processors_np(void)
{ {
DWORD_PTR p, s; DWORD_PTR p, s;
......
...@@ -56,7 +56,6 @@ int pthread_cond_init(pthread_cond_t *, const pthread_condattr_t *); ...@@ -56,7 +56,6 @@ int pthread_cond_init(pthread_cond_t *, const pthread_condattr_t *);
int pthread_cond_destroy(pthread_cond_t *); int pthread_cond_destroy(pthread_cond_t *);
int pthread_cond_wait(pthread_cond_t *, git_mutex *); int pthread_cond_wait(pthread_cond_t *, git_mutex *);
int pthread_cond_signal(pthread_cond_t *); int pthread_cond_signal(pthread_cond_t *);
/* pthread_cond_broadcast is not supported on Win32 yet. */
int pthread_num_processors_np(void); int pthread_num_processors_np(void);
......
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