Browse Source

Refs #281. Detect _WIN32 macro for Windows API.

http://www.mail-archive.com/bug-gnulib@gnu.org/msg05722.html
tags/v0.2.9.rc1
Zhang Xianyi 12 years ago
parent
commit
52f587db7f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common_thread.h

+ 1
- 1
common_thread.h View File

@@ -103,7 +103,7 @@ typedef struct blas_queue {


struct blas_queue *next; struct blas_queue *next;


#if defined( __WIN32__) || defined(__CYGWIN32__)
#if defined( __WIN32__) || defined(__CYGWIN32__) || defined(_WIN32)
CRITICAL_SECTION lock; CRITICAL_SECTION lock;
HANDLE finish; HANDLE finish;
#else #else


Loading…
Cancel
Save