]> sjero.net Git - iperf/blobdiff - include/Condition.h
Remove Win32 Support
[iperf] / include / Condition.h
index 692de35a51c1c870e73b6723d5df89b5229d4767..cb232c50b26bffa9f23708dcfbf3a8e1bb8dc7cc 100644 (file)
@@ -63,11 +63,6 @@ typedef struct Condition {
     pthread_cond_t mCondition;
     pthread_mutex_t mMutex;
 } Condition;
-#elif defined( HAVE_WIN32_THREAD )
-typedef struct Condition {
-    HANDLE mCondition;
-    HANDLE mMutex;
-} Condition;
 #else
 typedef struct Condition {
     int mCondition;
@@ -85,14 +80,6 @@ typedef struct Condition {
         Mutex_Initialize( &(Cond)->mMutex );              \
         pthread_cond_init( &(Cond)->mCondition, NULL );   \
     } while ( 0 )
-#elif defined( HAVE_WIN32_THREAD )
-    // set all conditions to be broadcast
-    // unfortunately in Win32 you have to know at creation
-    // whether the signal is broadcast or not.
-    #define Condition_Initialize( Cond ) do {                         \
-        Mutex_Initialize( &(Cond)->mMutex );                          \
-        (Cond)->mCondition = CreateEvent( NULL, true, false, NULL );  \
-    } while ( 0 )
 #else
     #define Condition_Initialize( Cond )
 #endif
@@ -103,11 +90,6 @@ typedef struct Condition {
         pthread_cond_destroy( &(Cond)->mCondition );  \
         Mutex_Destroy( &(Cond)->mMutex );             \
     } while ( 0 )
-#elif defined( HAVE_WIN32_THREAD )
-    #define Condition_Destroy( Cond ) do {            \
-        CloseHandle( (Cond)->mCondition );            \
-        Mutex_Destroy( &(Cond)->mMutex );             \
-    } while ( 0 )
 #else
     #define Condition_Destroy( Cond )
 #endif
@@ -115,13 +97,6 @@ typedef struct Condition {
     // sleep this thread, waiting for condition signal
 #if   defined( HAVE_POSIX_THREAD )
     #define Condition_Wait( Cond ) pthread_cond_wait( &(Cond)->mCondition, &(Cond)->mMutex )
-#elif defined( HAVE_WIN32_THREAD )
-    // atomically release mutex and wait on condition,                      
-    // then re-acquire the mutex
-    #define Condition_Wait( Cond ) do {                                         \
-        SignalObjectAndWait( (Cond)->mMutex, (Cond)->mCondition, INFINITE, false ); \
-        Mutex_Lock( &(Cond)->mMutex );                          \
-    } while ( 0 )
 #else
     #define Condition_Wait( Cond )
 #endif
@@ -135,13 +110,6 @@ typedef struct Condition {
         absTimeout.tv_nsec = 0;                                                 \
        pthread_cond_timedwait( &(Cond)->mCondition, &(Cond)->mMutex, &absTimeout ); \
     } while ( 0 )
-#elif defined( HAVE_WIN32_THREAD )
-    // atomically release mutex and wait on condition,
-    // then re-acquire the mutex
-    #define Condition_TimedWait( Cond, inSeconds ) do {                         \
-        SignalObjectAndWait( (Cond)->mMutex, (Cond)->mCondition, inSeconds*1000, false ); \
-        Mutex_Lock( &(Cond)->mMutex );                          \
-    } while ( 0 )
 #else
     #define Condition_TimedWait( Cond, inSeconds )
 #endif
@@ -151,8 +119,6 @@ typedef struct Condition {
     // use PulseEvent to auto-reset the signal after waking all threads
 #if   defined( HAVE_POSIX_THREAD )
     #define Condition_Signal( Cond ) pthread_cond_signal( &(Cond)->mCondition )
-#elif defined( HAVE_WIN32_THREAD )
-    #define Condition_Signal( Cond ) PulseEvent( (Cond)->mCondition )
 #else
     #define Condition_Signal( Cond )
 #endif
@@ -160,8 +126,6 @@ typedef struct Condition {
     // send a condition signal to wake all threads waiting on condition
 #if   defined( HAVE_POSIX_THREAD )
     #define Condition_Broadcast( Cond ) pthread_cond_broadcast( &(Cond)->mCondition )
-#elif defined( HAVE_WIN32_THREAD )
-    #define Condition_Broadcast( Cond ) PulseEvent( (Cond)->mCondition )
 #else
     #define Condition_Broadcast( Cond )
 #endif