From db389b5915c41ab61af284383b50ab29e97280df Mon Sep 17 00:00:00 2001 From: Zhang Xianyi Date: Sat, 24 Aug 2013 13:09:49 +0800 Subject: [PATCH] Refs #281. Detect __CYGWIN__ macro for Cygwin x86_64. Signed-off-by: Zhang Xianyi --- common_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_thread.h b/common_thread.h index 2dcc348f..ad386a44 100644 --- a/common_thread.h +++ b/common_thread.h @@ -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 -- 2.34.1