Commit 983ed20c authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ef51692a'

* commit 'ef51692a':
  Revert "w32pthread: help compiler figure out undeeded code"
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents a8ddafb0 ef51692a
...@@ -137,7 +137,7 @@ typedef struct win32_cond_t { ...@@ -137,7 +137,7 @@ typedef struct win32_cond_t {
static void pthread_cond_init(pthread_cond_t *cond, const void *unused_attr) static void pthread_cond_init(pthread_cond_t *cond, const void *unused_attr)
{ {
win32_cond_t *win32_cond = NULL; win32_cond_t *win32_cond = NULL;
if (_WIN32_WINNT >= 0x0600 || cond_init) { if (cond_init) {
cond_init(cond); cond_init(cond);
return; return;
} }
...@@ -162,7 +162,7 @@ static void pthread_cond_destroy(pthread_cond_t *cond) ...@@ -162,7 +162,7 @@ static void pthread_cond_destroy(pthread_cond_t *cond)
{ {
win32_cond_t *win32_cond = cond->ptr; win32_cond_t *win32_cond = cond->ptr;
/* native condition variables do not destroy */ /* native condition variables do not destroy */
if (_WIN32_WINNT >= 0x0600 || cond_init) if (cond_init)
return; return;
/* non native condition variables */ /* non native condition variables */
...@@ -179,7 +179,7 @@ static void pthread_cond_broadcast(pthread_cond_t *cond) ...@@ -179,7 +179,7 @@ static void pthread_cond_broadcast(pthread_cond_t *cond)
win32_cond_t *win32_cond = cond->ptr; win32_cond_t *win32_cond = cond->ptr;
int have_waiter; int have_waiter;
if (_WIN32_WINNT >= 0x0600 || cond_broadcast) { if (cond_broadcast) {
cond_broadcast(cond); cond_broadcast(cond);
return; return;
} }
...@@ -209,7 +209,7 @@ static int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) ...@@ -209,7 +209,7 @@ static int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
{ {
win32_cond_t *win32_cond = cond->ptr; win32_cond_t *win32_cond = cond->ptr;
int last_waiter; int last_waiter;
if (_WIN32_WINNT >= 0x0600 || cond_wait) { if (cond_wait) {
cond_wait(cond, mutex, INFINITE); cond_wait(cond, mutex, INFINITE);
return 0; return 0;
} }
...@@ -241,7 +241,7 @@ static void pthread_cond_signal(pthread_cond_t *cond) ...@@ -241,7 +241,7 @@ static void pthread_cond_signal(pthread_cond_t *cond)
{ {
win32_cond_t *win32_cond = cond->ptr; win32_cond_t *win32_cond = cond->ptr;
int have_waiter; int have_waiter;
if (_WIN32_WINNT >= 0x0600 || cond_signal) { if (cond_signal) {
cond_signal(cond); cond_signal(cond);
return; return;
} }
......
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