aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBenoit Germain <b n t DOT g e r m a i n AT g m a i l DOT c o m>2013-11-29 21:46:49 +0100
committerBenoit Germain <b n t DOT g e r m a i n AT g m a i l DOT c o m>2013-11-29 21:46:49 +0100
commite9323b40f1fa86124fa4ceaac67a20a1d3fedff4 (patch)
tree019a2dfb0049a0bf0d701cd68162a155df5960b7 /src
parentff74281fc94cda26b2d0a7fc2424f24fe2488718 (diff)
downloadlanes-e9323b40f1fa86124fa4ceaac67a20a1d3fedff4.tar.gz
lanes-e9323b40f1fa86124fa4ceaac67a20a1d3fedff4.tar.bz2
lanes-e9323b40f1fa86124fa4ceaac67a20a1d3fedff4.zip
Fix a macro check
Diffstat (limited to 'src')
-rw-r--r--src/threading.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threading.c b/src/threading.c
index ad5b473..d50207e 100644
--- a/src/threading.c
+++ b/src/threading.c
@@ -525,7 +525,7 @@ bool_t THREAD_WAIT_IMPL( THREAD_T *ref, double secs)
525 // 525 //
526 #include <errno.h> 526 #include <errno.h>
527 527
528# if ((defined(__MINGW32__) || defined(__MINGW64__)) && pthread_attr_setschedpolicy == ENOTSUP) 528# if ((defined(__MINGW32__) || defined(__MINGW64__)) && pthread_attr_setschedpolicy( A, S) == ENOTSUP)
529 // from the mingw-w64 team: 529 // from the mingw-w64 team:
530 // Well, we support pthread_setschedparam by which you can specify 530 // Well, we support pthread_setschedparam by which you can specify
531 // threading-policy. Nevertheless, yes we lack this function. In 531 // threading-policy. Nevertheless, yes we lack this function. In