Refs #281. Detect __CYGWIN__ macro for Cygwin x86_64.

Signed-off-by: Zhang Xianyi <traits.zhang@gmail.com>
This commit is contained in:
Zhang Xianyi 2013-08-24 13:09:49 +08:00
parent 52f587db7f
commit db389b5915
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ typedef struct blas_queue {
struct blas_queue *next;
#if defined( __WIN32__) || defined(__CYGWIN32__) || defined(_WIN32)
#if defined( __WIN32__) || defined(__CYGWIN32__) || defined(_WIN32) || defined(__CYGWIN__)
CRITICAL_SECTION lock;
HANDLE finish;
#else