diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/threading.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/threading.c b/src/threading.c index f1720eb..8757207 100644 --- a/src/threading.c +++ b/src/threading.c | |||
| @@ -343,7 +343,7 @@ void THREAD_SET_PRIORITY( int prio) | |||
| 343 | 343 | ||
| 344 | void THREAD_SET_AFFINITY( unsigned int aff) | 344 | void THREAD_SET_AFFINITY( unsigned int aff) |
| 345 | { | 345 | { |
| 346 | if( !SetThreadAffinityMask( GetCurrentThread(), aff)); | 346 | if( !SetThreadAffinityMask( GetCurrentThread(), aff)) |
| 347 | { | 347 | { |
| 348 | FAIL( "THREAD_SET_AFFINITY", GetLastError()); | 348 | FAIL( "THREAD_SET_AFFINITY", GetLastError()); |
| 349 | } | 349 | } |
| @@ -515,7 +515,7 @@ bool_t THREAD_WAIT_IMPL( THREAD_T *ref, double secs) | |||
| 515 | void SIGNAL_FREE( SIGNAL_T *ref ) | 515 | void SIGNAL_FREE( SIGNAL_T *ref ) |
| 516 | { | 516 | { |
| 517 | // nothing to do | 517 | // nothing to do |
| 518 | ref; | 518 | (void)ref; |
| 519 | } | 519 | } |
| 520 | 520 | ||
| 521 | bool_t SIGNAL_WAIT( SIGNAL_T *ref, MUTEX_T *mu_ref, time_d abs_secs) | 521 | bool_t SIGNAL_WAIT( SIGNAL_T *ref, MUTEX_T *mu_ref, time_d abs_secs) |
