From f57ec1b0a7ad8aac0855066f2874e33f3d3304f3 Mon Sep 17 00:00:00 2001 From: Mark Abraham Date: Fri, 25 May 2012 19:45:09 +1000 Subject: [PATCH] Continuing to fix threading on Cygwin Fixes #833 Change-Id: I5d577a149ad18b295559f6d87c24dc42bffd281e --- src/gmxlib/thread_mpi/numa_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gmxlib/thread_mpi/numa_malloc.c b/src/gmxlib/thread_mpi/numa_malloc.c index bcfd879014..f419b14381 100644 --- a/src/gmxlib/thread_mpi/numa_malloc.c +++ b/src/gmxlib/thread_mpi/numa_malloc.c @@ -23,7 +23,7 @@ #endif -#if ! (defined(WIN32) || defined( _WIN32 ) || defined(WIN64) || defined( _WIN64 ) || defined (__CYGWIN__)) +#if !(defined(WIN32) || defined( _WIN32 ) || defined(WIN64) || defined( _WIN64 )) || defined (__CYGWIN__) || defined (__CYGWIN32__) /* We don't have specific NUMA aware allocators: */ -- 2.11.4.GIT